Convert from git submodule to plain vendored copy. No push access to upstream nodes-app/swift-markdown-engine meant our local fix commit (05c1720) was stranded and unreachable from any remote on fresh clones/CI. Vendoring as plain files folds it into normal repo history instead.
19 lines
342 B
Swift
19 lines
342 B
Swift
//
|
|
// MarkdownEngineDemoApp.swift
|
|
// MarkdownEngine
|
|
//
|
|
// Created by Nicolas von Mallinckrodt on 29.04.26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct MarkdownEngineDemoApp: App {
|
|
var body: some Scene {
|
|
WindowGroup("MarkdownEngine Demo") {
|
|
ContentView()
|
|
.frame(minWidth: 640, minHeight: 480)
|
|
}
|
|
}
|
|
}
|