├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── ast ├── doc.go ├── node.go ├── node_test.go └── print.go ├── block_test.go ├── changes-from-blackfriday.md ├── cmd └── printast │ └── main.go ├── doc.go ├── esc_test.go ├── examples ├── basic.go ├── code_hightlight.go ├── inline.go ├── modify_ast.go ├── parser_hook.go ├── readme.md └── render_hook.go ├── fuzz.go ├── fuzz_crashes_test.go ├── go.mod ├── go.sum ├── helpers_test.go ├── html ├── callouts_test.go ├── doc.go ├── renderer.go └── smartypants.go ├── html_renderer_test.go ├── inline_test.go ├── markdown.go ├── markdown_test.go ├── md ├── md_renderer.go └── md_renderer_test.go ├── md_test.go ├── mmark_test.go ├── parser ├── aside.go ├── attribute.go ├── attribute_test.go ├── block.go ├── block_table.go ├── block_table_test.go ├── block_test.go ├── callout.go ├── callout_test.go ├── caption.go ├── caption_test.go ├── citation.go ├── citation_test.go ├── esc.go ├── esc_test.go ├── figures.go ├── include.go ├── include_test.go ├── inline.go ├── matter.go ├── options.go ├── options_test.go ├── parser.go ├── parser_test.go ├── ref.go └── ref_test.go ├── ref_test.go ├── s ├── bench.sh ├── fuzz.sh ├── prof.sh ├── run_tests.ps1 ├── run_tests.sh └── test_with_codecoverage.sh └── testdata ├── Amps and angle encoding.html ├── Amps and angle encoding.text ├── Auto links.html ├── Auto links.text ├── Backslash escapes.html ├── Backslash escapes.text ├── BlockComments.tests ├── Blockquotes with code blocks.html ├── Blockquotes with code blocks.text ├── Code Blocks.html ├── Code Blocks.text ├── Code Spans.html ├── Code Spans.text ├── CompletePage.tests ├── DefinitionList.tests ├── DefinitionListWithFencedCodeBlock.tests ├── Entities.html ├── Entities.text ├── FencedCodeBlock.tests ├── FencedCodeBlock_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests ├── FencedCodeInsideBlockquotes.tests ├── Hard-wrapped paragraphs with list-like lines no empty line before block.html ├── Hard-wrapped paragraphs with list-like lines no empty line before block.text ├── Hard-wrapped paragraphs with list-like lines.html ├── Hard-wrapped paragraphs with list-like lines.text ├── Horizontal rules.html ├── Horizontal rules.text ├── HorizontalRule.tests ├── Inline HTML (Advanced).html ├── Inline HTML (Advanced).text ├── Inline HTML (Simple).html ├── Inline HTML (Simple).text ├── Inline HTML comments.html ├── Inline HTML comments.text ├── Links, inline style.html ├── Links, inline style.text ├── Links, reference style.html ├── Links, reference style.text ├── Links, shortcut references.html ├── Links, shortcut references.text ├── ListWithFencedCodeBlockAndHeader.tests ├── Lists.tests ├── Literal quotes in titles.html ├── Literal quotes in titles.text ├── Markdown Documentation - Basics.html ├── Markdown Documentation - Basics.text ├── Markdown Documentation - Syntax.html ├── Markdown Documentation - Syntax.text ├── MathBlock.tests ├── Nested blockquotes.html ├── Nested blockquotes.text ├── NestedDefinitionList.tests ├── Ordered and unordered lists.html ├── Ordered and unordered lists.text ├── OrderedList.tests ├── OrderedList_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests ├── PrefixAutoHeaderIdExtension.tests ├── PrefixAutoHeaderIdExtensionWithPrefixAndSuffix.tests ├── PrefixHeaderIdExtension.tests ├── PrefixHeaderIdExtensionWithPrefixAndSuffix.tests ├── PrefixHeaderMmarkExtension.tests ├── PrefixHeaderNoExtensions.tests ├── PrefixHeaderSpaceExtension.tests ├── PrefixMultipleHeaderExtensions.tests ├── PreformattedHtml.tests ├── PreformattedHtmlLax.tests ├── SpaceHeadings.tests ├── Strong and em together.html ├── Strong and em together.text ├── TOC.tests ├── Table.tests ├── Tabs.html ├── Tabs.text ├── Tidyness.html ├── Tidyness.text ├── TitleBlock_EXTENSION_TITLEBLOCK.tests ├── UnderlineHeaders.tests ├── UnderlineHeadersAutoIDs.tests ├── UnorderedList.tests ├── UnorderedListWith_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests ├── bug168.tests ├── bug196.tests ├── bug242.tests ├── code_in_list.test ├── emphasis.test ├── issue265-slow-binary.text ├── md1.md ├── md1_exp.md ├── md2.md ├── md2_exp.md └── mmark.test /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/README.md -------------------------------------------------------------------------------- /ast/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/ast/doc.go -------------------------------------------------------------------------------- /ast/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/ast/node.go -------------------------------------------------------------------------------- /ast/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/ast/node_test.go -------------------------------------------------------------------------------- /ast/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/ast/print.go -------------------------------------------------------------------------------- /block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/block_test.go -------------------------------------------------------------------------------- /changes-from-blackfriday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/changes-from-blackfriday.md -------------------------------------------------------------------------------- /cmd/printast/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/cmd/printast/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/doc.go -------------------------------------------------------------------------------- /esc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/esc_test.go -------------------------------------------------------------------------------- /examples/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/basic.go -------------------------------------------------------------------------------- /examples/code_hightlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/code_hightlight.go -------------------------------------------------------------------------------- /examples/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/inline.go -------------------------------------------------------------------------------- /examples/modify_ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/modify_ast.go -------------------------------------------------------------------------------- /examples/parser_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/parser_hook.go -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/readme.md -------------------------------------------------------------------------------- /examples/render_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/examples/render_hook.go -------------------------------------------------------------------------------- /fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/fuzz.go -------------------------------------------------------------------------------- /fuzz_crashes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/fuzz_crashes_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/helpers_test.go -------------------------------------------------------------------------------- /html/callouts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/html/callouts_test.go -------------------------------------------------------------------------------- /html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/html/doc.go -------------------------------------------------------------------------------- /html/renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/html/renderer.go -------------------------------------------------------------------------------- /html/smartypants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/html/smartypants.go -------------------------------------------------------------------------------- /html_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/html_renderer_test.go -------------------------------------------------------------------------------- /inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/inline_test.go -------------------------------------------------------------------------------- /markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/markdown.go -------------------------------------------------------------------------------- /markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/markdown_test.go -------------------------------------------------------------------------------- /md/md_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/md/md_renderer.go -------------------------------------------------------------------------------- /md/md_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/md/md_renderer_test.go -------------------------------------------------------------------------------- /md_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/md_test.go -------------------------------------------------------------------------------- /mmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/mmark_test.go -------------------------------------------------------------------------------- /parser/aside.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/aside.go -------------------------------------------------------------------------------- /parser/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/attribute.go -------------------------------------------------------------------------------- /parser/attribute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/attribute_test.go -------------------------------------------------------------------------------- /parser/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/block.go -------------------------------------------------------------------------------- /parser/block_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/block_table.go -------------------------------------------------------------------------------- /parser/block_table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/block_table_test.go -------------------------------------------------------------------------------- /parser/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/block_test.go -------------------------------------------------------------------------------- /parser/callout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/callout.go -------------------------------------------------------------------------------- /parser/callout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/callout_test.go -------------------------------------------------------------------------------- /parser/caption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/caption.go -------------------------------------------------------------------------------- /parser/caption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/caption_test.go -------------------------------------------------------------------------------- /parser/citation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/citation.go -------------------------------------------------------------------------------- /parser/citation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/citation_test.go -------------------------------------------------------------------------------- /parser/esc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/esc.go -------------------------------------------------------------------------------- /parser/esc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/esc_test.go -------------------------------------------------------------------------------- /parser/figures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/figures.go -------------------------------------------------------------------------------- /parser/include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/include.go -------------------------------------------------------------------------------- /parser/include_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/include_test.go -------------------------------------------------------------------------------- /parser/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/inline.go -------------------------------------------------------------------------------- /parser/matter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/matter.go -------------------------------------------------------------------------------- /parser/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/options.go -------------------------------------------------------------------------------- /parser/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/options_test.go -------------------------------------------------------------------------------- /parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/parser.go -------------------------------------------------------------------------------- /parser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/parser_test.go -------------------------------------------------------------------------------- /parser/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/ref.go -------------------------------------------------------------------------------- /parser/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/parser/ref_test.go -------------------------------------------------------------------------------- /ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/ref_test.go -------------------------------------------------------------------------------- /s/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/bench.sh -------------------------------------------------------------------------------- /s/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/fuzz.sh -------------------------------------------------------------------------------- /s/prof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/prof.sh -------------------------------------------------------------------------------- /s/run_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/run_tests.ps1 -------------------------------------------------------------------------------- /s/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/run_tests.sh -------------------------------------------------------------------------------- /s/test_with_codecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/s/test_with_codecoverage.sh -------------------------------------------------------------------------------- /testdata/Amps and angle encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Amps and angle encoding.html -------------------------------------------------------------------------------- /testdata/Amps and angle encoding.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Amps and angle encoding.text -------------------------------------------------------------------------------- /testdata/Auto links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Auto links.html -------------------------------------------------------------------------------- /testdata/Auto links.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Auto links.text -------------------------------------------------------------------------------- /testdata/Backslash escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Backslash escapes.html -------------------------------------------------------------------------------- /testdata/Backslash escapes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Backslash escapes.text -------------------------------------------------------------------------------- /testdata/BlockComments.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/BlockComments.tests -------------------------------------------------------------------------------- /testdata/Blockquotes with code blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Blockquotes with code blocks.html -------------------------------------------------------------------------------- /testdata/Blockquotes with code blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Blockquotes with code blocks.text -------------------------------------------------------------------------------- /testdata/Code Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Code Blocks.html -------------------------------------------------------------------------------- /testdata/Code Blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Code Blocks.text -------------------------------------------------------------------------------- /testdata/Code Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Code Spans.html -------------------------------------------------------------------------------- /testdata/Code Spans.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Code Spans.text -------------------------------------------------------------------------------- /testdata/CompletePage.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/CompletePage.tests -------------------------------------------------------------------------------- /testdata/DefinitionList.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/DefinitionList.tests -------------------------------------------------------------------------------- /testdata/DefinitionListWithFencedCodeBlock.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/DefinitionListWithFencedCodeBlock.tests -------------------------------------------------------------------------------- /testdata/Entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Entities.html -------------------------------------------------------------------------------- /testdata/Entities.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Entities.text -------------------------------------------------------------------------------- /testdata/FencedCodeBlock.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/FencedCodeBlock.tests -------------------------------------------------------------------------------- /testdata/FencedCodeBlock_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/FencedCodeBlock_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests -------------------------------------------------------------------------------- /testdata/FencedCodeInsideBlockquotes.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/FencedCodeInsideBlockquotes.tests -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.html -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.text -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Hard-wrapped paragraphs with list-like lines.html -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Hard-wrapped paragraphs with list-like lines.text -------------------------------------------------------------------------------- /testdata/Horizontal rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Horizontal rules.html -------------------------------------------------------------------------------- /testdata/Horizontal rules.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Horizontal rules.text -------------------------------------------------------------------------------- /testdata/HorizontalRule.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/HorizontalRule.tests -------------------------------------------------------------------------------- /testdata/Inline HTML (Advanced).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML (Advanced).html -------------------------------------------------------------------------------- /testdata/Inline HTML (Advanced).text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML (Advanced).text -------------------------------------------------------------------------------- /testdata/Inline HTML (Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML (Simple).html -------------------------------------------------------------------------------- /testdata/Inline HTML (Simple).text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML (Simple).text -------------------------------------------------------------------------------- /testdata/Inline HTML comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML comments.html -------------------------------------------------------------------------------- /testdata/Inline HTML comments.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Inline HTML comments.text -------------------------------------------------------------------------------- /testdata/Links, inline style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, inline style.html -------------------------------------------------------------------------------- /testdata/Links, inline style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, inline style.text -------------------------------------------------------------------------------- /testdata/Links, reference style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, reference style.html -------------------------------------------------------------------------------- /testdata/Links, reference style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, reference style.text -------------------------------------------------------------------------------- /testdata/Links, shortcut references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, shortcut references.html -------------------------------------------------------------------------------- /testdata/Links, shortcut references.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Links, shortcut references.text -------------------------------------------------------------------------------- /testdata/ListWithFencedCodeBlockAndHeader.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/ListWithFencedCodeBlockAndHeader.tests -------------------------------------------------------------------------------- /testdata/Lists.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Lists.tests -------------------------------------------------------------------------------- /testdata/Literal quotes in titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Literal quotes in titles.html -------------------------------------------------------------------------------- /testdata/Literal quotes in titles.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Literal quotes in titles.text -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Markdown Documentation - Basics.html -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Basics.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Markdown Documentation - Basics.text -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Markdown Documentation - Syntax.html -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Syntax.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Markdown Documentation - Syntax.text -------------------------------------------------------------------------------- /testdata/MathBlock.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/MathBlock.tests -------------------------------------------------------------------------------- /testdata/Nested blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Nested blockquotes.html -------------------------------------------------------------------------------- /testdata/Nested blockquotes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Nested blockquotes.text -------------------------------------------------------------------------------- /testdata/NestedDefinitionList.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/NestedDefinitionList.tests -------------------------------------------------------------------------------- /testdata/Ordered and unordered lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Ordered and unordered lists.html -------------------------------------------------------------------------------- /testdata/Ordered and unordered lists.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Ordered and unordered lists.text -------------------------------------------------------------------------------- /testdata/OrderedList.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/OrderedList.tests -------------------------------------------------------------------------------- /testdata/OrderedList_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/OrderedList_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests -------------------------------------------------------------------------------- /testdata/PrefixAutoHeaderIdExtension.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixAutoHeaderIdExtension.tests -------------------------------------------------------------------------------- /testdata/PrefixAutoHeaderIdExtensionWithPrefixAndSuffix.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixAutoHeaderIdExtensionWithPrefixAndSuffix.tests -------------------------------------------------------------------------------- /testdata/PrefixHeaderIdExtension.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixHeaderIdExtension.tests -------------------------------------------------------------------------------- /testdata/PrefixHeaderIdExtensionWithPrefixAndSuffix.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixHeaderIdExtensionWithPrefixAndSuffix.tests -------------------------------------------------------------------------------- /testdata/PrefixHeaderMmarkExtension.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixHeaderMmarkExtension.tests -------------------------------------------------------------------------------- /testdata/PrefixHeaderNoExtensions.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixHeaderNoExtensions.tests -------------------------------------------------------------------------------- /testdata/PrefixHeaderSpaceExtension.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixHeaderSpaceExtension.tests -------------------------------------------------------------------------------- /testdata/PrefixMultipleHeaderExtensions.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PrefixMultipleHeaderExtensions.tests -------------------------------------------------------------------------------- /testdata/PreformattedHtml.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PreformattedHtml.tests -------------------------------------------------------------------------------- /testdata/PreformattedHtmlLax.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/PreformattedHtmlLax.tests -------------------------------------------------------------------------------- /testdata/SpaceHeadings.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/SpaceHeadings.tests -------------------------------------------------------------------------------- /testdata/Strong and em together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Strong and em together.html -------------------------------------------------------------------------------- /testdata/Strong and em together.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Strong and em together.text -------------------------------------------------------------------------------- /testdata/TOC.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/TOC.tests -------------------------------------------------------------------------------- /testdata/Table.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Table.tests -------------------------------------------------------------------------------- /testdata/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Tabs.html -------------------------------------------------------------------------------- /testdata/Tabs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Tabs.text -------------------------------------------------------------------------------- /testdata/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Tidyness.html -------------------------------------------------------------------------------- /testdata/Tidyness.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/Tidyness.text -------------------------------------------------------------------------------- /testdata/TitleBlock_EXTENSION_TITLEBLOCK.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/TitleBlock_EXTENSION_TITLEBLOCK.tests -------------------------------------------------------------------------------- /testdata/UnderlineHeaders.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/UnderlineHeaders.tests -------------------------------------------------------------------------------- /testdata/UnderlineHeadersAutoIDs.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/UnderlineHeadersAutoIDs.tests -------------------------------------------------------------------------------- /testdata/UnorderedList.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/UnorderedList.tests -------------------------------------------------------------------------------- /testdata/UnorderedListWith_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/UnorderedListWith_EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK.tests -------------------------------------------------------------------------------- /testdata/bug168.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/bug168.tests -------------------------------------------------------------------------------- /testdata/bug196.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/bug196.tests -------------------------------------------------------------------------------- /testdata/bug242.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/bug242.tests -------------------------------------------------------------------------------- /testdata/code_in_list.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/code_in_list.test -------------------------------------------------------------------------------- /testdata/emphasis.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/emphasis.test -------------------------------------------------------------------------------- /testdata/issue265-slow-binary.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/issue265-slow-binary.text -------------------------------------------------------------------------------- /testdata/md1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/md1.md -------------------------------------------------------------------------------- /testdata/md1_exp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/md2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/md2.md -------------------------------------------------------------------------------- /testdata/md2_exp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mmark.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gomarkdown/markdown/HEAD/testdata/mmark.test --------------------------------------------------------------------------------