gitextract_5ehxlhed/ ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── bug_report.yml ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── FSNotes/ │ ├── .bartycrouch.toml │ ├── AboutViewController.swift │ ├── AboutWindowController.swift │ ├── AppDelegate+URLRoutes.swift │ ├── AppDelegate.swift │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── EditorViewController+ScrollPosition.swift │ ├── EditorViewController+Sharing.swift │ ├── EditorViewController.swift │ ├── Extensions/ │ │ ├── NSAppearance+.swift │ │ ├── NSColor+.swift │ │ ├── NSFont+.swift │ │ ├── NSImage+.swift │ │ ├── NSWindow+.swift │ │ └── UserDefaultsManagement+.swift │ ├── FSNotes (CloudKit).entitlements │ ├── FSNotes.entitlements │ ├── Helpers/ │ │ ├── FSNTextAttachmentCell.swift │ │ ├── FileSystemEventManager.swift │ │ ├── FileWatcher.swift │ │ ├── FileWatcherEvent.swift │ │ ├── Printer.swift │ │ ├── PrinterLegacy.swift │ │ ├── SandboxBookmark.swift │ │ ├── Sidebar.swift │ │ └── UserDataService.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Icons/ │ │ │ ├── AppIconClassic.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIconModern.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── checkbox_empty.imageset/ │ │ │ └── Contents.json │ │ ├── checkbox_flipped.imageset/ │ │ │ └── Contents.json │ │ ├── checkbox_new.imageset/ │ │ │ └── Contents.json │ │ ├── code.colorset/ │ │ │ └── Contents.json │ │ ├── colors_background/ │ │ │ ├── Contents.json │ │ │ ├── background_tag.colorset/ │ │ │ │ └── Contents.json │ │ │ └── background_win.colorset/ │ │ │ └── Contents.json │ │ ├── copy.png.imageset/ │ │ │ └── Contents.json │ │ ├── divider.colorset/ │ │ │ └── Contents.json │ │ ├── dockIcon2.imageset/ │ │ │ └── Contents.json │ │ ├── dockIcon4.imageset/ │ │ │ └── Contents.json │ │ ├── friend.imageset/ │ │ │ └── Contents.json │ │ ├── highlight.colorset/ │ │ │ └── Contents.json │ │ ├── link.colorset/ │ │ │ └── Contents.json │ │ ├── locked.imageset/ │ │ │ └── Contents.json │ │ ├── mainBackground.colorset/ │ │ │ └── Contents.json │ │ ├── mainText.colorset/ │ │ │ └── Contents.json │ │ ├── menuBar.imageset/ │ │ │ └── Contents.json │ │ ├── new_note_button.imageset/ │ │ │ └── Contents.json │ │ ├── pin.imageset/ │ │ │ └── Contents.json │ │ ├── prefsAdvanced.imageset/ │ │ │ └── Contents.json │ │ ├── prefsEditor.imageset/ │ │ │ └── Contents.json │ │ ├── prefsGeneral.imageset/ │ │ │ └── Contents.json │ │ ├── prefsGit.imageset/ │ │ │ └── Contents.json │ │ ├── prefsLayout.imageset/ │ │ │ └── Contents.json │ │ ├── prefsWeb.imageset/ │ │ │ └── Contents.json │ │ ├── privacy.imageset/ │ │ │ └── Contents.json │ │ ├── quoteColor.colorset/ │ │ │ └── Contents.json │ │ ├── reverseBackground.colorset/ │ │ │ └── Contents.json │ │ ├── sidebar_archive.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_external.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_icloud_drive.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_inbox.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_notes.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_project.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_project_encrypted_locked.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_project_encrypted_unlocked.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_tag.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_todo.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_trash.imageset/ │ │ │ └── Contents.json │ │ ├── sidebar_untagged.imageset/ │ │ │ └── Contents.json │ │ └── web.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── LayoutManager.swift │ ├── Localizable.xcstrings │ ├── MainWindow.swift │ ├── MainWindowController.swift │ ├── Model/ │ │ ├── StorageEntity+CoreDataClass.swift │ │ └── StorageEntity+CoreDataProperties.swift │ ├── NSWindowController+.swift │ ├── NoteViewController.swift │ ├── Preferences/ │ │ ├── MasterPasswordViewController.swift │ │ ├── PreferencesAdvancedViewController.swift │ │ ├── PreferencesEditorViewController.swift │ │ ├── PreferencesGeneralViewController.swift │ │ ├── PreferencesGitViewController.swift │ │ ├── PreferencesSecurityViewController.swift │ │ ├── PreferencesUserInterfaceViewController.swift │ │ ├── PreferencesWebViewController.swift │ │ └── SettingsViewController.swift │ ├── PrefsViewController.swift │ ├── PrefsWindowController.swift │ ├── ProjectSettingsViewController.swift │ ├── SidebarScrollView.swift │ ├── View/ │ │ ├── AboutImageView.swift │ │ ├── ClickableTextField.swift │ │ ├── EditTextView+Clicked.swift │ │ ├── EditTextView+Complete.swift │ │ ├── EditTextView+DragOperation.swift │ │ ├── EditTextView+MoveLines.swift │ │ ├── EditTextView+Todo.swift │ │ ├── EditTextView.swift │ │ ├── EditorScrollView.swift │ │ ├── EditorSplitView.swift │ │ ├── EditorView.swift │ │ ├── HyperlinkTextField.swift │ │ ├── MPreviewContainerView.swift │ │ ├── MPreviewFindPanel.swift │ │ ├── NameTextField.swift │ │ ├── NoteCellView.swift │ │ ├── NoteRowView.swift │ │ ├── NotesCounterView.swift │ │ ├── NotesTableView.swift │ │ ├── OutlineHeaderView.swift │ │ ├── PreviewTextField.swift │ │ ├── SearchTextField.swift │ │ ├── SidebarCellView.swift │ │ ├── SidebarHeaderCellView.swift │ │ ├── SidebarNotesView.swift │ │ ├── SidebarOutlineView.swift │ │ ├── SidebarSplitView.swift │ │ ├── SidebarTableRowView.swift │ │ ├── TitleBarView.swift │ │ ├── TitleTextField.swift │ │ └── VerticallyAlignedTextFieldCell.swift │ ├── ViewController+Git.swift │ ├── ViewController+Menu.swift │ ├── ViewController+Print.swift │ ├── ViewController+Web.swift │ ├── ViewController.swift │ ├── bin/ │ │ └── git │ ├── modern.icon/ │ │ └── icon.json │ └── mul.lproj/ │ └── Main.xcstrings ├── FSNotes Info (Notarized).plist ├── FSNotes iOS/ │ ├── .bartycrouch.toml │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── Colors/ │ │ │ ├── Contents.json │ │ │ └── fsColor.colorset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Editor/ │ │ │ ├── Contents.json │ │ │ ├── checkbox.imageset/ │ │ │ │ └── Contents.json │ │ │ └── checkbox_empty.imageset/ │ │ │ └── Contents.json │ │ ├── Icons/ │ │ │ ├── AppIconClassic-2025.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIconModern.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIconNy-2026.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── LaunchScreenImage.imageset/ │ │ │ └── Contents.json │ │ ├── Sidebar/ │ │ │ ├── Contents.json │ │ │ ├── sidebar_archive.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_inbox.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_notes.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_project.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_project_encrypted_locked.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_project_encrypted_unlocked.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_tag.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_todo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── sidebar_trash.imageset/ │ │ │ │ └── Contents.json │ │ │ └── sidebar_untagged.imageset/ │ │ │ └── Contents.json │ │ ├── Sidebar Actions/ │ │ │ ├── Contents.json │ │ │ └── gitSettings.imageset/ │ │ │ └── Contents.json │ │ ├── Toolbar/ │ │ │ ├── Contents.json │ │ │ ├── codeBlockAsset.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── numbered_list.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ordered_list.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── pictureAsset.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── quote.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── redo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarBold.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarHeader.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarImage.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarIndentLeft.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarIndentRight.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarItalic.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarTag.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarTodo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── toolbarWiki.imageset/ │ │ │ │ └── Contents.json │ │ │ └── undo.imageset/ │ │ │ └── Contents.json │ │ └── Touch Bar/ │ │ ├── Contents.json │ │ ├── Image.imageset/ │ │ │ └── Contents.json │ │ ├── bold.imageset/ │ │ │ └── Contents.json │ │ ├── codeblock.imageset/ │ │ │ └── Contents.json │ │ ├── indent.imageset/ │ │ │ └── Contents.json │ │ ├── italic.imageset/ │ │ │ └── Contents.json │ │ ├── tb_link.imageset/ │ │ │ └── Contents.json │ │ ├── todo.imageset/ │ │ │ └── Contents.json │ │ └── unindent.imageset/ │ │ └── Contents.json │ ├── DatePickerViewController.swift │ ├── EditorViewController+QuickLook.swift │ ├── EditorViewController+Search.swift │ ├── EditorViewController.swift │ ├── Extensions/ │ │ ├── UIApplication+.swift │ │ ├── UIBarButtonItem+.swift │ │ ├── UIColor+.swift │ │ ├── UIFont+.swift │ │ ├── UIImage+.swift │ │ ├── UITextView+.swift │ │ └── UserDefaultsManagement+.swift │ ├── FSNotes iOS.entitlements │ ├── FSNotes_iOS.xcdatamodeld/ │ │ ├── .xccurrentversion │ │ └── FSNotes_iOS.xcdatamodel/ │ │ └── contents │ ├── Helpers/ │ │ ├── Buttons.swift │ │ ├── CloudDriveManager.swift │ │ ├── FolderPopoverActions.swift │ │ ├── SandboxBookmark.swift │ │ ├── ShortcutIdentifier.swift │ │ ├── Sidebar.swift │ │ ├── SingleImageTouchDownGestureRecognizer.swift │ │ └── SingleTouchDownGestureRecognizer.swift │ ├── Icons/ │ │ ├── classic-2025.icon/ │ │ │ └── icon.json │ │ ├── modern.icon/ │ │ │ └── icon.json │ │ └── ny-2026.icon/ │ │ └── icon.json │ ├── ImagePreviewViewController.swift │ ├── Info.plist │ ├── InfoPlist.xcstrings │ ├── Launch Screen.storyboard │ ├── LaunchImage.launchimage/ │ │ └── Contents.json │ ├── Localizable.xcstrings │ ├── Main.storyboard │ ├── MainNavigationController.swift │ ├── MoveViewController.swift │ ├── Preferences/ │ │ ├── AppIconViewController.swift │ │ ├── CodeFontViewController.swift │ │ ├── CodeThemeViewController.swift │ │ ├── DefaultExtensionControllerView.swift │ │ ├── ExternalViewController.swift │ │ ├── FontViewController.swift │ │ ├── GitTableViewCell.swift │ │ ├── GitViewController.swift │ │ ├── LanguageViewController.swift │ │ ├── ProViewController.swift │ │ ├── ProjectSettingsViewController.swift │ │ ├── ProjectsViewController.swift │ │ ├── SecurityViewController.swift │ │ ├── SettingsEditorViewController.swift │ │ ├── SettingsTableViewCell.swift │ │ ├── SettingsViewController.swift │ │ ├── SidebarViewController.swift │ │ ├── SortByViewController.swift │ │ └── ThanksViewController.swift │ ├── RevisionsViewController.swift │ ├── SceneDelegate.swift │ ├── View/ │ │ ├── EditTextView.swift │ │ ├── EditorSelectionRect.swift │ │ ├── ImageScrollView.swift │ │ ├── NoteCellView.swift │ │ ├── NotesTableView.swift │ │ ├── SidebarTableCellView.swift │ │ └── SidebarTableView.swift │ ├── ViewController+More.swift │ ├── ViewController.swift │ ├── fr.lproj/ │ │ └── Main.storyboard │ ├── nl-NL.lproj/ │ │ └── Main.storyboard │ ├── pt-PT.lproj/ │ │ └── Main.storyboard │ ├── ru.lproj/ │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ └── Main.storyboard │ └── uk.lproj/ │ └── Main.storyboard ├── FSNotes iOS Share/ │ ├── .bartycrouch.toml │ ├── FSNotes iOS Share.entitlements │ ├── Info.plist │ ├── Localizable.xcstrings │ ├── MainInterface.storyboard │ ├── NSMutableAttributedString+.swift │ ├── ShareViewController.swift │ ├── es.lproj/ │ │ └── Localizable.strings │ ├── pt.lproj/ │ │ └── InfoPlist.strings │ ├── ru.lproj/ │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainInterface.strings │ ├── uk.lproj/ │ │ ├── InfoPlist.strings │ │ └── MainInterface.strings │ ├── zh-Hans-CN.lproj/ │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── zh-Hans.lproj/ │ └── MainInterface.strings ├── FSNotes.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ ├── FSNotes (iCloud).xcscheme │ ├── FSNotes iOS Share Extension.xcscheme │ ├── FSNotes iOS.xcscheme │ └── FSNotes.xcscheme ├── FSNotes.xcworkspace/ │ └── contents.xcworkspacedata ├── FSNotesCore/ │ ├── Business/ │ │ ├── ApiResponse.swift │ │ ├── AppearanceType.swift │ │ ├── AttributedBox.swift │ │ ├── FSTag.swift │ │ ├── ImageFormat.swift │ │ ├── LanguageType.swift │ │ ├── Markdown.swift │ │ ├── Note+Preview.swift │ │ ├── Note.swift │ │ ├── NoteAttachment.swift │ │ ├── NoteContainer.swift │ │ ├── NoteType.swift │ │ ├── PreviewState.swift │ │ ├── ProgressState.swift │ │ ├── Project+Date.swift │ │ ├── Project.swift │ │ ├── ProjectSettings.swift │ │ ├── RuntimeError.swift │ │ ├── SearchQuery.swift │ │ ├── SettingsFilesNaming.swift │ │ ├── SidebarItem.swift │ │ ├── SidebarItemType.swift │ │ ├── SortBy.swift │ │ ├── SortDirection.swift │ │ ├── Storage.swift │ │ ├── StorageType.swift │ │ ├── TextBundleInfo.swift │ │ └── UndoData.swift │ ├── CodeBlockDetector.swift │ ├── Core macOS/ │ │ └── zh-Hans-CN.lproj/ │ │ └── InfoPlist.strings │ ├── Extensions/ │ │ ├── Data+.swift │ │ ├── Date+.swift │ │ ├── DateFormatter+.swift │ │ ├── FileManager+.swift │ │ ├── NSAttributedString+.swift │ │ ├── NSAttributedStringKey+.swift │ │ ├── NSMutableAttributedString+.swift │ │ ├── NSRange+.swift │ │ ├── NSTextCheckingResult+.swift │ │ ├── Pasteboard.swift │ │ ├── Project+Git.swift │ │ ├── Storage+Git.swift │ │ ├── String+.swift │ │ ├── String+Punycode.swift │ │ ├── URL+.swift │ │ ├── URL+Image.swift │ │ └── UTI.swift │ ├── FSParser.swift │ ├── Git/ │ │ ├── authentication/ │ │ │ ├── Authentication.swift │ │ │ ├── KeyAuthentication.swift │ │ │ └── PasswordAuthentication.swift │ │ ├── branch/ │ │ │ ├── Branch.swift │ │ │ ├── Branches.swift │ │ │ └── BranchesIterator.swift │ │ ├── commit/ │ │ │ └── Commit.swift │ │ ├── commons/ │ │ │ ├── Blob.swift │ │ │ ├── ConfigManager.swift │ │ │ ├── Error.swift │ │ │ ├── Errors.swift │ │ │ ├── OID.swift │ │ │ ├── Object.swift │ │ │ ├── Progress.swift │ │ │ ├── Signature.swift │ │ │ ├── StaticSshKeyDelegate.swift │ │ │ ├── Strings.swift │ │ │ └── Wrapper.swift │ │ ├── diff/ │ │ │ ├── Diff.swift │ │ │ └── DiffEntry.swift │ │ ├── head/ │ │ │ ├── Head+Checkout.swift │ │ │ ├── Head+Merge.swift │ │ │ └── Head.swift │ │ ├── index/ │ │ │ ├── Index+Commit.swift │ │ │ ├── Index+Files.swift │ │ │ └── Index.swift │ │ ├── reference/ │ │ │ ├── Reference+Target.swift │ │ │ └── Reference.swift │ │ ├── remote/ │ │ │ ├── Remote.swift │ │ │ └── Remotes.swift │ │ ├── repository/ │ │ │ ├── Repository+Commit.swift │ │ │ ├── Repository+Lookup.swift │ │ │ ├── Repository+Open.swift │ │ │ ├── Repository.swift │ │ │ └── RepositoryManager.swift │ │ ├── revision/ │ │ │ ├── FileHistoryIterator.swift │ │ │ └── RevisionIterator.swift │ │ ├── status/ │ │ │ ├── Status.swift │ │ │ ├── StatusIterator.swift │ │ │ └── Statuses.swift │ │ ├── tag/ │ │ │ ├── Tag.swift │ │ │ ├── TagIterator.swift │ │ │ └── Tags.swift │ │ └── tree/ │ │ ├── Tree.swift │ │ └── TreeEntry.swift │ ├── HtmlExtractor.swift │ ├── ImagesProcessor.swift │ ├── KeychainConfiguration.swift │ ├── KeychainPasswordItem.swift │ ├── MPreviewView.swift │ ├── NSTextAttachment+.swift │ ├── NSTextStorage++.swift │ ├── NameHelper.swift │ ├── Note+History.swift │ ├── NoteCellView+.swift │ ├── NoteMeta.swift │ ├── NotesTextProcessor.swift │ ├── RepositoryAction.swift │ ├── SwiftHighlighter/ │ │ ├── Languages/ │ │ │ ├── Assembly.swift │ │ │ ├── Bash.swift │ │ │ ├── C.swift │ │ │ ├── Clojure.swift │ │ │ ├── Cpp.swift │ │ │ ├── Csharp.swift │ │ │ ├── Css.swift │ │ │ ├── Dart.swift │ │ │ ├── Erlang.swift │ │ │ ├── Go.swift │ │ │ ├── Groovy.swift │ │ │ ├── Haskell.swift │ │ │ ├── Html.swift │ │ │ ├── Java.swift │ │ │ ├── JavaScript.swift │ │ │ ├── Kotlin.swift │ │ │ ├── Lisp.swift │ │ │ ├── Lua.swift │ │ │ ├── Matlab.swift │ │ │ ├── Mermaid.swift │ │ │ ├── ObjectiveC.swift │ │ │ ├── Perl.swift │ │ │ ├── Php.swift │ │ │ ├── Python.swift │ │ │ ├── R.swift │ │ │ ├── Ruby.swift │ │ │ ├── Rust.swift │ │ │ ├── Scala.swift │ │ │ ├── Scratch.swift │ │ │ ├── Shell.swift │ │ │ ├── Sql.swift │ │ │ ├── Swift.swift │ │ │ ├── TypeScript.swift │ │ │ └── Vb.swift │ │ ├── Platform.swift │ │ ├── SwiftHighlighter.swift │ │ ├── Theme.swift │ │ └── Themes/ │ │ ├── AtomOneDark.swift │ │ ├── AtomOneLight.swift │ │ ├── GitHubDark.swift │ │ ├── GitHubLight.swift │ │ ├── SolarizedDark.swift │ │ └── SolarizedLight.swift │ ├── TextFormatter.swift │ ├── TextStorageProcessor.swift │ ├── UserDefaultsManagement.swift │ └── ViewController+WebApi.swift ├── LICENSE ├── Logo/ │ └── License ├── Podfile ├── README.md ├── README_zh_CN.md ├── README_zh_TW.md └── Resources/ ├── Icons/ │ ├── EncryptedTextPack.icns │ ├── Markdown.icns │ ├── Text.icns │ └── TextBundle.icns ├── Initial/ │ ├── FSNotes - Readme.md │ ├── FSNotes 4.0 Change Log.textbundle/ │ │ ├── info.json │ │ └── text.markdown │ ├── FSNotes 4.0 for iOS.textbundle/ │ │ ├── info.json │ │ └── text.markdown │ ├── FSNotes 5.0 Change Log.textbundle/ │ │ ├── info.json │ │ └── text.md │ ├── Meet FSNotes 6.textbundle/ │ │ ├── info.json │ │ └── text.markdown │ └── Meet FSNotes 7.textbundle/ │ ├── info.json │ └── text.markdown ├── MPreview.bundle/ │ ├── index.html │ ├── js/ │ │ └── tex-mml-chtml.js │ └── main.css └── Welcome.bundle/ ├── 1. Introduction.textbundle/ │ ├── info.json │ └── text.markdown ├── 2. Links.textbundle/ │ ├── info.json │ └── text.markdown ├── 3. Shortcuts.textbundle/ │ ├── info.json │ └── text.markdown ├── 4. Sidebar.textbundle/ │ ├── info.json │ └── text.markdown ├── 5. Tags and subtags.textbundle/ │ ├── info.json │ └── text.markdown ├── 6. Mermaid and MathJax.textbundle/ │ ├── info.json │ └── text.markdown ├── 7. Git powered versioning.textbundle/ │ ├── info.json │ └── text.markdown ├── 8. Containers.textbundle/ │ ├── info.json │ └── text.markdown └── 9. GFM Markdown.textbundle/ ├── info.json └── text.markdown