├── MarkdownEditor.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── MarkdownEditor ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Document.swift ├── Info.plist ├── MarkdownEditor.entitlements ├── PreviewViewController.swift ├── SplitViewController.swift ├── Tag.swift ├── TagCreation.swift └── TextViewController.swift ├── MarkdownEditorTests ├── Info.plist └── MarkdownEditorTests.swift ├── MarkdownEditorUITests ├── Info.plist └── MarkdownEditorUITests.swift └── README.md /MarkdownEditor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MarkdownEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MarkdownEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MarkdownEditor.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /MarkdownEditor/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/AppDelegate.swift -------------------------------------------------------------------------------- /MarkdownEditor/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MarkdownEditor/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MarkdownEditor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MarkdownEditor/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Document.swift -------------------------------------------------------------------------------- /MarkdownEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Info.plist -------------------------------------------------------------------------------- /MarkdownEditor/MarkdownEditor.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/MarkdownEditor.entitlements -------------------------------------------------------------------------------- /MarkdownEditor/PreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/PreviewViewController.swift -------------------------------------------------------------------------------- /MarkdownEditor/SplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/SplitViewController.swift -------------------------------------------------------------------------------- /MarkdownEditor/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/Tag.swift -------------------------------------------------------------------------------- /MarkdownEditor/TagCreation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/TagCreation.swift -------------------------------------------------------------------------------- /MarkdownEditor/TextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditor/TextViewController.swift -------------------------------------------------------------------------------- /MarkdownEditorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditorTests/Info.plist -------------------------------------------------------------------------------- /MarkdownEditorTests/MarkdownEditorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditorTests/MarkdownEditorTests.swift -------------------------------------------------------------------------------- /MarkdownEditorUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditorUITests/Info.plist -------------------------------------------------------------------------------- /MarkdownEditorUITests/MarkdownEditorUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/MarkdownEditorUITests/MarkdownEditorUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDevJournal/MarkdownEditor/HEAD/README.md --------------------------------------------------------------------------------