├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── swiftlint.yml ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── CHANGELOG.md ├── Down-Example ├── Down-Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── Down-Example.xcscheme │ │ └── macOS Demo.xcscheme ├── Down-Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Shared │ └── README-sample.md └── macOS Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── macOS Demo.entitlements ├── Down.podspec ├── Down.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Down.xcscheme ├── Images └── ohhai.gif ├── LICENSE ├── LinuxMain.swift ├── Package.swift ├── README.md ├── Sources ├── Down │ ├── AST │ │ ├── Nodes │ │ │ ├── BaseNode.swift │ │ │ ├── BlockQuote.swift │ │ │ ├── ChildSequence.swift │ │ │ ├── Code.swift │ │ │ ├── CodeBlock.swift │ │ │ ├── CustomBlock.swift │ │ │ ├── CustomInline.swift │ │ │ ├── Document.swift │ │ │ ├── Emphasis.swift │ │ │ ├── Heading.swift │ │ │ ├── HtmlBlock.swift │ │ │ ├── HtmlInline.swift │ │ │ ├── Image.swift │ │ │ ├── Item.swift │ │ │ ├── LineBreak.swift │ │ │ ├── Link.swift │ │ │ ├── List.swift │ │ │ ├── Node.swift │ │ │ ├── Paragraph.swift │ │ │ ├── SoftBreak.swift │ │ │ ├── Strong.swift │ │ │ ├── Text.swift │ │ │ └── ThematicBreak.swift │ │ ├── Styling │ │ │ ├── Attribute Collections │ │ │ │ ├── ColorCollection.swift │ │ │ │ ├── FontCollection.swift │ │ │ │ └── ParagraphStyleCollection.swift │ │ │ ├── Custom Attributes │ │ │ │ ├── BlockBackgroundColorAttribute.swift │ │ │ │ ├── QuoteStripeAttribute.swift │ │ │ │ └── ThematicBreakAttribute.swift │ │ │ ├── Helpers │ │ │ │ ├── Extensions │ │ │ │ │ ├── CGPoint+Translate.swift │ │ │ │ │ ├── CGRect+Helpers.swift │ │ │ │ │ ├── NSAttributedString+Helpers.swift │ │ │ │ │ ├── NSMutableAttributedString+Attributes.swift │ │ │ │ │ └── UIFont+Traits.swift │ │ │ │ └── ListItemParagraphStyler.swift │ │ │ ├── Layout Managers │ │ │ │ ├── DownDebugLayoutManager.swift │ │ │ │ └── DownLayoutManager.swift │ │ │ ├── Options │ │ │ │ ├── CodeBlockOptions.swift │ │ │ │ ├── ListItemOptions.swift │ │ │ │ ├── QuoteStripeOptions.swift │ │ │ │ └── ThematicBreakOptions.swift │ │ │ ├── Stylers │ │ │ │ ├── DownStyler.swift │ │ │ │ ├── DownStylerConfiguration.swift │ │ │ │ └── Styler.swift │ │ │ └── Text Views │ │ │ │ ├── DownDebugTextView.swift │ │ │ │ └── DownTextView.swift │ │ └── Visitors │ │ │ ├── AttributedStringVisitor.swift │ │ │ ├── DebugVisitor.swift │ │ │ ├── ListItemPrefixGenerator.swift │ │ │ └── Visitor.swift │ ├── Down.h │ ├── Down.swift │ ├── Enums & Options │ │ ├── DownErrors.swift │ │ └── DownOptions.swift │ ├── Extensions │ │ ├── NSAttributedString+HTML.swift │ │ └── String+ToHTML.swift │ ├── Renderers │ │ ├── DownASTRenderable.swift │ │ ├── DownAttributedStringRenderable.swift │ │ ├── DownCommonMarkRenderable.swift │ │ ├── DownGroffRenderable.swift │ │ ├── DownHTMLRenderable.swift │ │ ├── DownLaTeXRenderable.swift │ │ ├── DownRenderable.swift │ │ └── DownXMLRenderable.swift │ ├── Resources │ │ ├── DownView (macOS).bundle │ │ │ ├── css │ │ │ │ └── down.min.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── down.js │ │ │ │ └── highlight.min.js │ │ └── DownView.bundle │ │ │ ├── css │ │ │ └── down.min.css │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── down.js │ │ │ └── highlight.min.js │ └── Views │ │ ├── BundleHelper.swift │ │ └── DownView.swift └── cmark │ ├── COPYING │ ├── blocks.c │ ├── buffer.c │ ├── buffer.h │ ├── case_fold_switch.inc │ ├── chunk.h │ ├── cmark.c │ ├── cmark.h │ ├── cmark_ctype.c │ ├── cmark_ctype.h │ ├── cmark_export.h │ ├── cmark_version.h │ ├── commonmark.c │ ├── config.h │ ├── entities.inc │ ├── houdini.h │ ├── houdini_href_e.c │ ├── houdini_html_e.c │ ├── houdini_html_u.c │ ├── html.c │ ├── include │ └── module.modulemap │ ├── inlines.c │ ├── inlines.h │ ├── iterator.c │ ├── iterator.h │ ├── latex.c │ ├── man.c │ ├── node.c │ ├── node.h │ ├── parser.h │ ├── references.c │ ├── references.h │ ├── render.c │ ├── render.h │ ├── scanners.c │ ├── scanners.h │ ├── utf8.c │ ├── utf8.h │ └── xml.c ├── Supporting Files ├── Configurations │ ├── Deployment-Targets.xcconfig │ ├── Universal-Framework-Target.xcconfig │ └── Universal-Target-Base.xcconfig ├── Down-Info.plist └── DownTests-Info.plist ├── Tests └── DownTests │ ├── AST │ ├── ListItemPrefixGeneratorTests.swift │ ├── NodeTests.swift │ ├── VisitorTests.swift │ └── __Snapshots__ │ │ └── VisitorTests │ │ ├── testAttributedStringVisitor.1.txt │ │ ├── testBlockQuote.1.txt │ │ ├── testBlockQuote.2.txt │ │ ├── testCodeBlock.1.txt │ │ ├── testCodeBlock.2.txt │ │ ├── testHeading.1.txt │ │ ├── testHeading.2.txt │ │ ├── testHtmlBlock.1.txt │ │ ├── testHtmlBlock.2.txt │ │ ├── testInline.1.txt │ │ ├── testInline.2.txt │ │ ├── testLineBreak.1.txt │ │ ├── testLineBreak.2.txt │ │ ├── testLink.1.txt │ │ ├── testLink.2.txt │ │ ├── testList.1.txt │ │ ├── testList.2.txt │ │ ├── testParagraph.1.txt │ │ ├── testParagraph.2.txt │ │ ├── testSimpleMarkdown.1.txt │ │ ├── testSoftBreak.1.txt │ │ ├── testSoftBreak.2.txt │ │ ├── testThematicBreak.1.txt │ │ └── testThematicBreak.2.txt │ ├── BindingTests.swift │ ├── DownViewTests.swift │ ├── Fixtures │ └── TestDownView.bundle │ │ ├── css │ │ └── down.min.css │ │ ├── index.html │ │ └── js │ │ ├── down.js │ │ └── highlight.min.js │ ├── NSAttributedStringTests.swift │ ├── StringTests.swift │ ├── Styler │ ├── BlockQuoteStyleTests.swift │ ├── CodeBlockStyleTests.swift │ ├── DownDebugLayoutManagerTests.swift │ ├── HeadingStyleTests.swift │ ├── Helpers │ │ ├── CGPointTranslateTests.swift │ │ ├── CGRectHelpersTests.swift │ │ ├── NSAttributedString+HelpersTests.swift │ │ └── NSMutableAttributedString+AttributesTests.swift │ ├── InlineStyleTests.swift │ ├── LinkStyleTests.swift │ ├── ListItemStyleTests.swift │ ├── StylerTestSuite.swift │ ├── ThematicBreakSyleTests.swift │ └── __Snapshots__ │ │ ├── BlockQuoteStyleTests │ │ ├── testThat_NestedQuotes_Have_TheirOwnStripes.1.png │ │ ├── testThat_QuoteAlignment_Obeys_TextContainerOffset.1.png │ │ ├── testThat_QuoteContent_Aligns.1.png │ │ ├── testThat_QuoteContent_Preserves_BlockElements.1.png │ │ ├── testThat_QuoteContent_Preserves_InlineElements.1.png │ │ ├── testThat_QuoteContent_Preserves_ListFormatting.1.png │ │ ├── testThat_QuoteContent_Preserves_ThematicBreak.1.png │ │ ├── testThat_QuoteStripe_AlignsTo_Margin.1.png │ │ ├── testThat_QuotedList_WithinA_ListItem_AlignsCorrectly.1.png │ │ └── testThat_Quotes_WithinA_ListItem_AlignsTo_ListItemContent.1.png │ │ ├── CodeBlockStyleTests │ │ ├── testThat_CodeBlock_IsStyled.1.png │ │ └── testThat_HtmlBlock_IsStyled.1.png │ │ ├── DownDebugLayoutManagerTests │ │ └── testThat_LineFragments_AreDrawn.1.png │ │ ├── HeadingStyleTests │ │ ├── testThat_HeadingStyle_Preserves_StrongEmphasisAndMonospaceTraits.1.png │ │ ├── testThat_Heading_LevelOne_IsStyled.1.png │ │ ├── testThat_Heading_LevelThree_IsStyled.1.png │ │ ├── testThat_Heading_LevelTwo_IsStyled.1.png │ │ └── testThat_Heading_LevelsThreeToSix_AreStyledEqually.1.png │ │ ├── InlineStyleTests │ │ ├── testThat_CodeText_IsStyled.1.png │ │ ├── testThat_EmphasizedCode_IsStyled.1.png │ │ ├── testThat_EmphasizedStrongCode_IsStyled.1.png │ │ ├── testThat_EmphasizedStrongText_IsStyled.1.png │ │ ├── testThat_EmphasizedText_IsStyled.1.png │ │ ├── testThat_StrongCode_IsStyled.1.png │ │ ├── testThat_StrongEmphasizedCode_IsStyled.1.png │ │ ├── testThat_StrongEmphasizedText_IsStyled.1.png │ │ └── testThat_StrongText_IsStyled.1.png │ │ ├── LinkStyleTests │ │ ├── testThat_Link_IsStyled.1.png │ │ └── testThat_Link_Preserves_InlineStyles.1.png │ │ ├── ListItemStyleTests │ │ ├── testThat_DigitAndBulletPrefixes_Align.1.png │ │ ├── testThat_DigitPrefixes_ExceedingMaxPrefixLength_DontPush_WrappedLines.1.png │ │ ├── testThat_DigitPrefixes_ExceedingMaxPrefixLength_Push_FirstLine.1.png │ │ ├── testThat_DigitPrefixes_UpToMaxPrefixLength_Align.1.png │ │ ├── testThat_FirstParagraph_WithLineBreaks_AlignTo_FirstLine.1.png │ │ ├── testThat_FirstParagraph_WrappedLines_AlignTo_FirstLine.1.png │ │ ├── testThat_ListItems_Preseve_InlineElements.1.png │ │ ├── testThat_NestedList_AlignsTo_OuterList.1.png │ │ ├── testThat_NestedList_InMiddleParagraph_AlignsTo_OuterList.1.png │ │ ├── testThat_NestedList_InTrailingParagraph_AlignsTo_OuterList.1.png │ │ ├── testThat_NestedList_With_MultipleParagraphs_Align.1.png │ │ ├── testThat_NestedLists_AlignTo_ParentLists.1.png │ │ ├── testThat_TrailingParagraphs_FirstLines_AlignTo_FirstParagraph.1.png │ │ └── testThat_TrailingParagraphs_WrappedLines_AlignTo_FirstLines.1.png │ │ └── ThematicBreakSyleTests │ │ ├── testThat_ThematicBreak_CanBe_Indented.1.png │ │ ├── testThat_ThematicBreak_InOffsetTextContainer_IsStyled.1.png │ │ └── testThat_ThematicBreak_IsStyled.1.png │ └── __Snapshots__ │ └── BindingTests │ ├── testCommonMarkBindngsWork.1.txt │ ├── testGroffBindingsWork.1.txt │ ├── testHTMLBindingsWork.1.txt │ ├── testLaTeXBindngsWork.1.txt │ └── testXMLBindingsWork.1.txt ├── codecov.yml └── docker ├── Dockerfile ├── README.md ├── docker-compose.yml └── down-rebuild.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/xcshareddata/xcschemes/Down-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/xcshareddata/xcschemes/Down-Example.xcscheme -------------------------------------------------------------------------------- /Down-Example/Down-Example.xcodeproj/xcshareddata/xcschemes/macOS Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example.xcodeproj/xcshareddata/xcschemes/macOS Demo.xcscheme -------------------------------------------------------------------------------- /Down-Example/Down-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/AppDelegate.swift -------------------------------------------------------------------------------- /Down-Example/Down-Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Down-Example/Down-Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Down-Example/Down-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Down-Example/Down-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/Info.plist -------------------------------------------------------------------------------- /Down-Example/Down-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Down-Example/ViewController.swift -------------------------------------------------------------------------------- /Down-Example/Shared/README-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/Shared/README-sample.md -------------------------------------------------------------------------------- /Down-Example/macOS Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Down-Example/macOS Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Down-Example/macOS Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Down-Example/macOS Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Down-Example/macOS Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/Info.plist -------------------------------------------------------------------------------- /Down-Example/macOS Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/ViewController.swift -------------------------------------------------------------------------------- /Down-Example/macOS Demo/macOS Demo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down-Example/macOS Demo/macOS Demo.entitlements -------------------------------------------------------------------------------- /Down.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.podspec -------------------------------------------------------------------------------- /Down.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Down.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Down.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Down.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Down.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Down.xcodeproj/xcshareddata/xcschemes/Down.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Down.xcodeproj/xcshareddata/xcschemes/Down.xcscheme -------------------------------------------------------------------------------- /Images/ohhai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Images/ohhai.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/LICENSE -------------------------------------------------------------------------------- /LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/LinuxMain.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/BaseNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/BaseNode.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/BlockQuote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/BlockQuote.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/ChildSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/ChildSequence.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Code.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Code.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/CodeBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/CodeBlock.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/CustomBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/CustomBlock.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/CustomInline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/CustomInline.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Document.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Emphasis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Emphasis.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Heading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Heading.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/HtmlBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/HtmlBlock.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/HtmlInline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/HtmlInline.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Image.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Item.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/LineBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/LineBreak.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Link.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/List.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Node.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Paragraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Paragraph.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/SoftBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/SoftBreak.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Strong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Strong.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/Text.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Nodes/ThematicBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Nodes/ThematicBreak.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Attribute Collections/ColorCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Attribute Collections/ColorCollection.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Attribute Collections/FontCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Attribute Collections/FontCollection.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Attribute Collections/ParagraphStyleCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Attribute Collections/ParagraphStyleCollection.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Custom Attributes/BlockBackgroundColorAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Custom Attributes/BlockBackgroundColorAttribute.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Custom Attributes/QuoteStripeAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Custom Attributes/QuoteStripeAttribute.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Custom Attributes/ThematicBreakAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Custom Attributes/ThematicBreakAttribute.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/Extensions/CGPoint+Translate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/Extensions/CGPoint+Translate.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/Extensions/CGRect+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/Extensions/CGRect+Helpers.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/Extensions/NSAttributedString+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/Extensions/NSAttributedString+Helpers.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/Extensions/NSMutableAttributedString+Attributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/Extensions/NSMutableAttributedString+Attributes.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/Extensions/UIFont+Traits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/Extensions/UIFont+Traits.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Helpers/ListItemParagraphStyler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Helpers/ListItemParagraphStyler.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Layout Managers/DownDebugLayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Layout Managers/DownDebugLayoutManager.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Layout Managers/DownLayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Layout Managers/DownLayoutManager.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Options/CodeBlockOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Options/CodeBlockOptions.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Options/ListItemOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Options/ListItemOptions.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Options/QuoteStripeOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Options/QuoteStripeOptions.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Options/ThematicBreakOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Options/ThematicBreakOptions.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Stylers/DownStyler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Stylers/DownStyler.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Stylers/DownStylerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Stylers/DownStylerConfiguration.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Stylers/Styler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Stylers/Styler.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Text Views/DownDebugTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Text Views/DownDebugTextView.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Styling/Text Views/DownTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Styling/Text Views/DownTextView.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Visitors/AttributedStringVisitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Visitors/AttributedStringVisitor.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Visitors/DebugVisitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Visitors/DebugVisitor.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Visitors/ListItemPrefixGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Visitors/ListItemPrefixGenerator.swift -------------------------------------------------------------------------------- /Sources/Down/AST/Visitors/Visitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/AST/Visitors/Visitor.swift -------------------------------------------------------------------------------- /Sources/Down/Down.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Down.h -------------------------------------------------------------------------------- /Sources/Down/Down.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Down.swift -------------------------------------------------------------------------------- /Sources/Down/Enums & Options/DownErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Enums & Options/DownErrors.swift -------------------------------------------------------------------------------- /Sources/Down/Enums & Options/DownOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Enums & Options/DownOptions.swift -------------------------------------------------------------------------------- /Sources/Down/Extensions/NSAttributedString+HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Extensions/NSAttributedString+HTML.swift -------------------------------------------------------------------------------- /Sources/Down/Extensions/String+ToHTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Extensions/String+ToHTML.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownASTRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownASTRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownAttributedStringRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownAttributedStringRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownCommonMarkRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownCommonMarkRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownGroffRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownGroffRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownHTMLRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownHTMLRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownLaTeXRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownLaTeXRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Renderers/DownXMLRenderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Renderers/DownXMLRenderable.swift -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView (macOS).bundle/css/down.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView (macOS).bundle/css/down.min.css -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView (macOS).bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView (macOS).bundle/index.html -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView (macOS).bundle/js/down.js: -------------------------------------------------------------------------------- 1 | hljs.initHighlightingOnLoad(); 2 | -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView (macOS).bundle/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView (macOS).bundle/js/highlight.min.js -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView.bundle/css/down.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView.bundle/css/down.min.css -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView.bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView.bundle/index.html -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView.bundle/js/down.js: -------------------------------------------------------------------------------- 1 | hljs.initHighlightingOnLoad(); -------------------------------------------------------------------------------- /Sources/Down/Resources/DownView.bundle/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Resources/DownView.bundle/js/highlight.min.js -------------------------------------------------------------------------------- /Sources/Down/Views/BundleHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Views/BundleHelper.swift -------------------------------------------------------------------------------- /Sources/Down/Views/DownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/Down/Views/DownView.swift -------------------------------------------------------------------------------- /Sources/cmark/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/COPYING -------------------------------------------------------------------------------- /Sources/cmark/blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/blocks.c -------------------------------------------------------------------------------- /Sources/cmark/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/buffer.c -------------------------------------------------------------------------------- /Sources/cmark/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/buffer.h -------------------------------------------------------------------------------- /Sources/cmark/case_fold_switch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/case_fold_switch.inc -------------------------------------------------------------------------------- /Sources/cmark/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/chunk.h -------------------------------------------------------------------------------- /Sources/cmark/cmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark.c -------------------------------------------------------------------------------- /Sources/cmark/cmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark.h -------------------------------------------------------------------------------- /Sources/cmark/cmark_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark_ctype.c -------------------------------------------------------------------------------- /Sources/cmark/cmark_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark_ctype.h -------------------------------------------------------------------------------- /Sources/cmark/cmark_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark_export.h -------------------------------------------------------------------------------- /Sources/cmark/cmark_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/cmark_version.h -------------------------------------------------------------------------------- /Sources/cmark/commonmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/commonmark.c -------------------------------------------------------------------------------- /Sources/cmark/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/config.h -------------------------------------------------------------------------------- /Sources/cmark/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/entities.inc -------------------------------------------------------------------------------- /Sources/cmark/houdini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/houdini.h -------------------------------------------------------------------------------- /Sources/cmark/houdini_href_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/houdini_href_e.c -------------------------------------------------------------------------------- /Sources/cmark/houdini_html_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/houdini_html_e.c -------------------------------------------------------------------------------- /Sources/cmark/houdini_html_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/houdini_html_u.c -------------------------------------------------------------------------------- /Sources/cmark/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/html.c -------------------------------------------------------------------------------- /Sources/cmark/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/include/module.modulemap -------------------------------------------------------------------------------- /Sources/cmark/inlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/inlines.c -------------------------------------------------------------------------------- /Sources/cmark/inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/inlines.h -------------------------------------------------------------------------------- /Sources/cmark/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/iterator.c -------------------------------------------------------------------------------- /Sources/cmark/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/iterator.h -------------------------------------------------------------------------------- /Sources/cmark/latex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/latex.c -------------------------------------------------------------------------------- /Sources/cmark/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/man.c -------------------------------------------------------------------------------- /Sources/cmark/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/node.c -------------------------------------------------------------------------------- /Sources/cmark/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/node.h -------------------------------------------------------------------------------- /Sources/cmark/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/parser.h -------------------------------------------------------------------------------- /Sources/cmark/references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/references.c -------------------------------------------------------------------------------- /Sources/cmark/references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/references.h -------------------------------------------------------------------------------- /Sources/cmark/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/render.c -------------------------------------------------------------------------------- /Sources/cmark/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/render.h -------------------------------------------------------------------------------- /Sources/cmark/scanners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/scanners.c -------------------------------------------------------------------------------- /Sources/cmark/scanners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/scanners.h -------------------------------------------------------------------------------- /Sources/cmark/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/utf8.c -------------------------------------------------------------------------------- /Sources/cmark/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/utf8.h -------------------------------------------------------------------------------- /Sources/cmark/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Sources/cmark/xml.c -------------------------------------------------------------------------------- /Supporting Files/Configurations/Deployment-Targets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Supporting Files/Configurations/Deployment-Targets.xcconfig -------------------------------------------------------------------------------- /Supporting Files/Configurations/Universal-Framework-Target.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Supporting Files/Configurations/Universal-Framework-Target.xcconfig -------------------------------------------------------------------------------- /Supporting Files/Configurations/Universal-Target-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Supporting Files/Configurations/Universal-Target-Base.xcconfig -------------------------------------------------------------------------------- /Supporting Files/Down-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Supporting Files/Down-Info.plist -------------------------------------------------------------------------------- /Supporting Files/DownTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Supporting Files/DownTests-Info.plist -------------------------------------------------------------------------------- /Tests/DownTests/AST/ListItemPrefixGeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/ListItemPrefixGeneratorTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/AST/NodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/NodeTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/AST/VisitorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/VisitorTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testAttributedStringVisitor.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testAttributedStringVisitor.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testBlockQuote.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testBlockQuote.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testBlockQuote.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testBlockQuote.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testCodeBlock.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testCodeBlock.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testCodeBlock.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testCodeBlock.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testHeading.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testHeading.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testHeading.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testHeading.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testHtmlBlock.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testHtmlBlock.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testHtmlBlock.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testHtmlBlock.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testInline.1.txt: -------------------------------------------------------------------------------- 1 | Text strong emphasis code -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testInline.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testInline.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testLineBreak.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testLineBreak.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testLineBreak.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testLineBreak.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testLink.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testLink.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testLink.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testLink.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testList.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testList.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testList.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testList.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testParagraph.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testParagraph.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testParagraph.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testParagraph.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testSimpleMarkdown.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testSimpleMarkdown.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testSoftBreak.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testSoftBreak.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testSoftBreak.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testSoftBreak.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testThematicBreak.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testThematicBreak.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/AST/__Snapshots__/VisitorTests/testThematicBreak.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/AST/__Snapshots__/VisitorTests/testThematicBreak.2.txt -------------------------------------------------------------------------------- /Tests/DownTests/BindingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/BindingTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/DownViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/DownViewTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Fixtures/TestDownView.bundle/css/down.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Fixtures/TestDownView.bundle/css/down.min.css -------------------------------------------------------------------------------- /Tests/DownTests/Fixtures/TestDownView.bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Fixtures/TestDownView.bundle/index.html -------------------------------------------------------------------------------- /Tests/DownTests/Fixtures/TestDownView.bundle/js/down.js: -------------------------------------------------------------------------------- 1 | hljs.initHighlightingOnLoad(); -------------------------------------------------------------------------------- /Tests/DownTests/Fixtures/TestDownView.bundle/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Fixtures/TestDownView.bundle/js/highlight.min.js -------------------------------------------------------------------------------- /Tests/DownTests/NSAttributedStringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/NSAttributedStringTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/StringTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/BlockQuoteStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/BlockQuoteStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/CodeBlockStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/CodeBlockStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/DownDebugLayoutManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/DownDebugLayoutManagerTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/HeadingStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/HeadingStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/Helpers/CGPointTranslateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/Helpers/CGPointTranslateTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/Helpers/CGRectHelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/Helpers/CGRectHelpersTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/Helpers/NSAttributedString+HelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/Helpers/NSAttributedString+HelpersTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/Helpers/NSMutableAttributedString+AttributesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/Helpers/NSMutableAttributedString+AttributesTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/InlineStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/InlineStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/LinkStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/LinkStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/ListItemStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/ListItemStyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/StylerTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/StylerTestSuite.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/ThematicBreakSyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/ThematicBreakSyleTests.swift -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_NestedQuotes_Have_TheirOwnStripes.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_NestedQuotes_Have_TheirOwnStripes.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteAlignment_Obeys_TextContainerOffset.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteAlignment_Obeys_TextContainerOffset.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Aligns.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Aligns.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_BlockElements.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_BlockElements.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_InlineElements.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_InlineElements.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_ListFormatting.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_ListFormatting.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_ThematicBreak.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteContent_Preserves_ThematicBreak.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteStripe_AlignsTo_Margin.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuoteStripe_AlignsTo_Margin.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuotedList_WithinA_ListItem_AlignsCorrectly.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_QuotedList_WithinA_ListItem_AlignsCorrectly.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_Quotes_WithinA_ListItem_AlignsTo_ListItemContent.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/BlockQuoteStyleTests/testThat_Quotes_WithinA_ListItem_AlignsTo_ListItemContent.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/CodeBlockStyleTests/testThat_CodeBlock_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/CodeBlockStyleTests/testThat_CodeBlock_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/CodeBlockStyleTests/testThat_HtmlBlock_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/CodeBlockStyleTests/testThat_HtmlBlock_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/DownDebugLayoutManagerTests/testThat_LineFragments_AreDrawn.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/DownDebugLayoutManagerTests/testThat_LineFragments_AreDrawn.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_HeadingStyle_Preserves_StrongEmphasisAndMonospaceTraits.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_HeadingStyle_Preserves_StrongEmphasisAndMonospaceTraits.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelOne_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelOne_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelThree_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelThree_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelTwo_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelTwo_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelsThreeToSix_AreStyledEqually.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/HeadingStyleTests/testThat_Heading_LevelsThreeToSix_AreStyledEqually.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_CodeText_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_CodeText_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedCode_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedCode_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedStrongCode_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedStrongCode_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedStrongText_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedStrongText_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedText_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_EmphasizedText_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongCode_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongCode_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongEmphasizedCode_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongEmphasizedCode_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongEmphasizedText_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongEmphasizedText_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongText_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/InlineStyleTests/testThat_StrongText_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/LinkStyleTests/testThat_Link_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/LinkStyleTests/testThat_Link_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/LinkStyleTests/testThat_Link_Preserves_InlineStyles.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/LinkStyleTests/testThat_Link_Preserves_InlineStyles.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitAndBulletPrefixes_Align.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitAndBulletPrefixes_Align.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_ExceedingMaxPrefixLength_DontPush_WrappedLines.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_ExceedingMaxPrefixLength_DontPush_WrappedLines.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_ExceedingMaxPrefixLength_Push_FirstLine.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_ExceedingMaxPrefixLength_Push_FirstLine.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_UpToMaxPrefixLength_Align.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_DigitPrefixes_UpToMaxPrefixLength_Align.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_FirstParagraph_WithLineBreaks_AlignTo_FirstLine.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_FirstParagraph_WithLineBreaks_AlignTo_FirstLine.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_FirstParagraph_WrappedLines_AlignTo_FirstLine.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_FirstParagraph_WrappedLines_AlignTo_FirstLine.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_ListItems_Preseve_InlineElements.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_ListItems_Preseve_InlineElements.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_AlignsTo_OuterList.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_AlignsTo_OuterList.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_InMiddleParagraph_AlignsTo_OuterList.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_InMiddleParagraph_AlignsTo_OuterList.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_InTrailingParagraph_AlignsTo_OuterList.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_InTrailingParagraph_AlignsTo_OuterList.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_With_MultipleParagraphs_Align.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedList_With_MultipleParagraphs_Align.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedLists_AlignTo_ParentLists.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_NestedLists_AlignTo_ParentLists.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_TrailingParagraphs_FirstLines_AlignTo_FirstParagraph.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_TrailingParagraphs_FirstLines_AlignTo_FirstParagraph.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_TrailingParagraphs_WrappedLines_AlignTo_FirstLines.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ListItemStyleTests/testThat_TrailingParagraphs_WrappedLines_AlignTo_FirstLines.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_CanBe_Indented.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_CanBe_Indented.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_InOffsetTextContainer_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_InOffsetTextContainer_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_IsStyled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/Styler/__Snapshots__/ThematicBreakSyleTests/testThat_ThematicBreak_IsStyled.1.png -------------------------------------------------------------------------------- /Tests/DownTests/__Snapshots__/BindingTests/testCommonMarkBindngsWork.1.txt: -------------------------------------------------------------------------------- 1 | ## [Down](https://github.com/johnxnnguyen/Down) 2 | -------------------------------------------------------------------------------- /Tests/DownTests/__Snapshots__/BindingTests/testGroffBindingsWork.1.txt: -------------------------------------------------------------------------------- 1 | .SS 2 | Down (https://github.com/johnxnnguyen/Down) 3 | -------------------------------------------------------------------------------- /Tests/DownTests/__Snapshots__/BindingTests/testHTMLBindingsWork.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/__Snapshots__/BindingTests/testHTMLBindingsWork.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/__Snapshots__/BindingTests/testLaTeXBindngsWork.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/__Snapshots__/BindingTests/testLaTeXBindngsWork.1.txt -------------------------------------------------------------------------------- /Tests/DownTests/__Snapshots__/BindingTests/testXMLBindingsWork.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/Tests/DownTests/__Snapshots__/BindingTests/testXMLBindingsWork.1.txt -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/down-rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnxnguyen/Down/HEAD/docker/down-rebuild.sh --------------------------------------------------------------------------------