Files
Puranjay Savar Mattas 6e1ffb96fd chore: vendor swift-markdown-engine as plain tracked source
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.
2026-08-20 13:26:13 +01:00

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)
}
}
}