├── .gitattributes ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GithubMarkdown.php ├── LICENSE ├── Markdown.php ├── MarkdownExtra.php ├── Parser.php ├── README.md ├── bin └── markdown ├── block ├── CodeTrait.php ├── FencedCodeTrait.php ├── HeadlineTrait.php ├── HtmlTrait.php ├── ListTrait.php ├── QuoteTrait.php ├── RuleTrait.php └── TableTrait.php ├── composer.json ├── inline ├── CodeTrait.php ├── EmphStrongTrait.php ├── LinkTrait.php ├── StrikeoutTrait.php └── UrlLinkTrait.php ├── phpunit.xml.dist └── tests ├── BaseMarkdownTest.php ├── GithubMarkdownTest.php ├── MarkdownExtraTest.php ├── MarkdownOLStartNumTest.php ├── MarkdownTest.php ├── ParserTest.php ├── bootstrap.php ├── extra-data ├── code_in_lists.html ├── code_in_lists.md ├── fenced-code.html ├── fenced-code.md ├── non-tables.html ├── non-tables.md ├── special-attributes.html ├── special-attributes.md ├── tables.html ├── tables.md ├── test_precedence.html └── test_precedence.md ├── github-data ├── code_in_lists.html ├── code_in_lists.md ├── del.html ├── del.md ├── dense-block-markers.html ├── dense-block-markers.md ├── dense-block-markers2.html ├── dense-block-markers2.md ├── github-basics.html ├── github-basics.md ├── github-code-in-numbered-list.html ├── github-code-in-numbered-list.md ├── github-sample.html ├── github-sample.md ├── issue-33.html ├── issue-33.md ├── issue-38.html ├── issue-38.md ├── issue-50.html ├── issue-50.md ├── lists.html ├── lists.md ├── non-tables.html ├── non-tables.md ├── tables.html ├── tables.md ├── test_precedence.html ├── test_precedence.md ├── url.html └── url.md ├── markdown-data ├── README ├── blockquote-nested.html ├── blockquote-nested.md ├── blockquote.html ├── blockquote.md ├── code.html ├── code.md ├── dense-block-markers.html ├── dense-block-markers.md ├── dos.html ├── dos.md ├── dos2.html ├── dos2.md ├── emphasis.html ├── emphasis.md ├── empty-line.html ├── empty-line.md ├── endless_loop_bug.html ├── endless_loop_bug.md ├── escape-in-link.html ├── escape-in-link.md ├── headline.html ├── headline.md ├── hr.html ├── hr.md ├── html-block.html ├── html-block.md ├── images.html ├── images.md ├── inline-html.html ├── inline-html.md ├── lazy-list.html ├── lazy-list.md ├── links.html ├── links.md ├── list-marker-in-paragraph.html ├── list-marker-in-paragraph.md ├── list-separated-by-hr.html ├── list-separated-by-hr.md ├── list.html ├── list.md ├── list_and_reference.html ├── list_and_reference.md ├── list_items_with_undefined_ref.html ├── list_items_with_undefined_ref.md ├── md1_amps_and_angle_encoding.html ├── md1_amps_and_angle_encoding.md ├── md1_auto_links.html ├── md1_auto_links.md ├── md1_backslash_escapes.html ├── md1_backslash_escapes.md ├── md1_blockquotes_with_code_blocks.html ├── md1_blockquotes_with_code_blocks.md ├── md1_horizontal_rules.html ├── md1_horizontal_rules.md ├── md1_inline_html_avanced.html ├── md1_inline_html_avanced.md ├── md1_inline_html_comments.html ├── md1_inline_html_comments.md ├── md1_inline_html_simple.html ├── md1_inline_html_simple.md ├── md1_links_inline_style.html ├── md1_links_inline_style.md ├── md1_links_reference_style.html ├── md1_links_reference_style.md ├── md1_literal_quotes_in_titles.html ├── md1_literal_quotes_in_titles.md ├── md1_markdown_documentation_basics.html ├── md1_markdown_documentation_basics.md ├── md1_nested_blockquotes.html ├── md1_nested_blockquotes.md ├── md1_ordered_and_unordered_lists.html ├── md1_ordered_and_unordered_lists.md ├── md1_strong_and_em_together.html ├── md1_strong_and_em_together.md ├── md1_tabs.html ├── md1_tabs.md ├── md1_tidyness.html ├── md1_tidyness.md ├── nested-lists.html ├── nested-lists.md ├── newline.html ├── newline.md ├── paragraph.html ├── paragraph.md ├── references.html ├── references.md ├── specs.html ├── specs.md ├── test_precedence.html ├── test_precedence.md ├── unicode.html ├── unicode.md ├── utf8-do-not-kill-characters.html └── utf8-do-not-kill-characters.md ├── markdown-ol-start-num-data ├── list.html ├── list.md ├── md1_ordered_and_unordered_lists.html └── md1_ordered_and_unordered_lists.md └── profile.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | composer.lock 3 | /vendor 4 | README.html 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GithubMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/GithubMarkdown.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/Markdown.php -------------------------------------------------------------------------------- /MarkdownExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/MarkdownExtra.php -------------------------------------------------------------------------------- /Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/Parser.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/README.md -------------------------------------------------------------------------------- /bin/markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/bin/markdown -------------------------------------------------------------------------------- /block/CodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/CodeTrait.php -------------------------------------------------------------------------------- /block/FencedCodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/FencedCodeTrait.php -------------------------------------------------------------------------------- /block/HeadlineTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/HeadlineTrait.php -------------------------------------------------------------------------------- /block/HtmlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/HtmlTrait.php -------------------------------------------------------------------------------- /block/ListTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/ListTrait.php -------------------------------------------------------------------------------- /block/QuoteTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/QuoteTrait.php -------------------------------------------------------------------------------- /block/RuleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/RuleTrait.php -------------------------------------------------------------------------------- /block/TableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/block/TableTrait.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/composer.json -------------------------------------------------------------------------------- /inline/CodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/inline/CodeTrait.php -------------------------------------------------------------------------------- /inline/EmphStrongTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/inline/EmphStrongTrait.php -------------------------------------------------------------------------------- /inline/LinkTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/inline/LinkTrait.php -------------------------------------------------------------------------------- /inline/StrikeoutTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/inline/StrikeoutTrait.php -------------------------------------------------------------------------------- /inline/UrlLinkTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/inline/UrlLinkTrait.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/BaseMarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/BaseMarkdownTest.php -------------------------------------------------------------------------------- /tests/GithubMarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/GithubMarkdownTest.php -------------------------------------------------------------------------------- /tests/MarkdownExtraTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/MarkdownExtraTest.php -------------------------------------------------------------------------------- /tests/MarkdownOLStartNumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/MarkdownOLStartNumTest.php -------------------------------------------------------------------------------- /tests/MarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/MarkdownTest.php -------------------------------------------------------------------------------- /tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/ParserTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/extra-data/code_in_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/code_in_lists.html -------------------------------------------------------------------------------- /tests/extra-data/code_in_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/code_in_lists.md -------------------------------------------------------------------------------- /tests/extra-data/fenced-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/fenced-code.html -------------------------------------------------------------------------------- /tests/extra-data/fenced-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/fenced-code.md -------------------------------------------------------------------------------- /tests/extra-data/non-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/non-tables.html -------------------------------------------------------------------------------- /tests/extra-data/non-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/non-tables.md -------------------------------------------------------------------------------- /tests/extra-data/special-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/special-attributes.html -------------------------------------------------------------------------------- /tests/extra-data/special-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/special-attributes.md -------------------------------------------------------------------------------- /tests/extra-data/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/tables.html -------------------------------------------------------------------------------- /tests/extra-data/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/tables.md -------------------------------------------------------------------------------- /tests/extra-data/test_precedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/test_precedence.html -------------------------------------------------------------------------------- /tests/extra-data/test_precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/extra-data/test_precedence.md -------------------------------------------------------------------------------- /tests/github-data/code_in_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/code_in_lists.html -------------------------------------------------------------------------------- /tests/github-data/code_in_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/code_in_lists.md -------------------------------------------------------------------------------- /tests/github-data/del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/del.html -------------------------------------------------------------------------------- /tests/github-data/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/del.md -------------------------------------------------------------------------------- /tests/github-data/dense-block-markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/dense-block-markers.html -------------------------------------------------------------------------------- /tests/github-data/dense-block-markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/dense-block-markers.md -------------------------------------------------------------------------------- /tests/github-data/dense-block-markers2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/dense-block-markers2.html -------------------------------------------------------------------------------- /tests/github-data/dense-block-markers2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/dense-block-markers2.md -------------------------------------------------------------------------------- /tests/github-data/github-basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-basics.html -------------------------------------------------------------------------------- /tests/github-data/github-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-basics.md -------------------------------------------------------------------------------- /tests/github-data/github-code-in-numbered-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-code-in-numbered-list.html -------------------------------------------------------------------------------- /tests/github-data/github-code-in-numbered-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-code-in-numbered-list.md -------------------------------------------------------------------------------- /tests/github-data/github-sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-sample.html -------------------------------------------------------------------------------- /tests/github-data/github-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/github-sample.md -------------------------------------------------------------------------------- /tests/github-data/issue-33.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-33.html -------------------------------------------------------------------------------- /tests/github-data/issue-33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-33.md -------------------------------------------------------------------------------- /tests/github-data/issue-38.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-38.html -------------------------------------------------------------------------------- /tests/github-data/issue-38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-38.md -------------------------------------------------------------------------------- /tests/github-data/issue-50.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-50.html -------------------------------------------------------------------------------- /tests/github-data/issue-50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/issue-50.md -------------------------------------------------------------------------------- /tests/github-data/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/lists.html -------------------------------------------------------------------------------- /tests/github-data/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/lists.md -------------------------------------------------------------------------------- /tests/github-data/non-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/non-tables.html -------------------------------------------------------------------------------- /tests/github-data/non-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/non-tables.md -------------------------------------------------------------------------------- /tests/github-data/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/tables.html -------------------------------------------------------------------------------- /tests/github-data/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/tables.md -------------------------------------------------------------------------------- /tests/github-data/test_precedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/test_precedence.html -------------------------------------------------------------------------------- /tests/github-data/test_precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/test_precedence.md -------------------------------------------------------------------------------- /tests/github-data/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/url.html -------------------------------------------------------------------------------- /tests/github-data/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/github-data/url.md -------------------------------------------------------------------------------- /tests/markdown-data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/README -------------------------------------------------------------------------------- /tests/markdown-data/blockquote-nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/blockquote-nested.html -------------------------------------------------------------------------------- /tests/markdown-data/blockquote-nested.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/blockquote-nested.md -------------------------------------------------------------------------------- /tests/markdown-data/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/blockquote.html -------------------------------------------------------------------------------- /tests/markdown-data/blockquote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/blockquote.md -------------------------------------------------------------------------------- /tests/markdown-data/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/code.html -------------------------------------------------------------------------------- /tests/markdown-data/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/code.md -------------------------------------------------------------------------------- /tests/markdown-data/dense-block-markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dense-block-markers.html -------------------------------------------------------------------------------- /tests/markdown-data/dense-block-markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dense-block-markers.md -------------------------------------------------------------------------------- /tests/markdown-data/dos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dos.html -------------------------------------------------------------------------------- /tests/markdown-data/dos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dos.md -------------------------------------------------------------------------------- /tests/markdown-data/dos2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dos2.html -------------------------------------------------------------------------------- /tests/markdown-data/dos2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/dos2.md -------------------------------------------------------------------------------- /tests/markdown-data/emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/emphasis.html -------------------------------------------------------------------------------- /tests/markdown-data/emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/emphasis.md -------------------------------------------------------------------------------- /tests/markdown-data/empty-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/empty-line.html -------------------------------------------------------------------------------- /tests/markdown-data/empty-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/empty-line.md -------------------------------------------------------------------------------- /tests/markdown-data/endless_loop_bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/endless_loop_bug.html -------------------------------------------------------------------------------- /tests/markdown-data/endless_loop_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/endless_loop_bug.md -------------------------------------------------------------------------------- /tests/markdown-data/escape-in-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/escape-in-link.html -------------------------------------------------------------------------------- /tests/markdown-data/escape-in-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/escape-in-link.md -------------------------------------------------------------------------------- /tests/markdown-data/headline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/headline.html -------------------------------------------------------------------------------- /tests/markdown-data/headline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/headline.md -------------------------------------------------------------------------------- /tests/markdown-data/hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/hr.html -------------------------------------------------------------------------------- /tests/markdown-data/hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/hr.md -------------------------------------------------------------------------------- /tests/markdown-data/html-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/html-block.html -------------------------------------------------------------------------------- /tests/markdown-data/html-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/html-block.md -------------------------------------------------------------------------------- /tests/markdown-data/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/images.html -------------------------------------------------------------------------------- /tests/markdown-data/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/images.md -------------------------------------------------------------------------------- /tests/markdown-data/inline-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/inline-html.html -------------------------------------------------------------------------------- /tests/markdown-data/inline-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/inline-html.md -------------------------------------------------------------------------------- /tests/markdown-data/lazy-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/lazy-list.html -------------------------------------------------------------------------------- /tests/markdown-data/lazy-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/lazy-list.md -------------------------------------------------------------------------------- /tests/markdown-data/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/links.html -------------------------------------------------------------------------------- /tests/markdown-data/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/links.md -------------------------------------------------------------------------------- /tests/markdown-data/list-marker-in-paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list-marker-in-paragraph.html -------------------------------------------------------------------------------- /tests/markdown-data/list-marker-in-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list-marker-in-paragraph.md -------------------------------------------------------------------------------- /tests/markdown-data/list-separated-by-hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list-separated-by-hr.html -------------------------------------------------------------------------------- /tests/markdown-data/list-separated-by-hr.md: -------------------------------------------------------------------------------- 1 | - foo 2 | *** 3 | - bar -------------------------------------------------------------------------------- /tests/markdown-data/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list.html -------------------------------------------------------------------------------- /tests/markdown-data/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list.md -------------------------------------------------------------------------------- /tests/markdown-data/list_and_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list_and_reference.html -------------------------------------------------------------------------------- /tests/markdown-data/list_and_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list_and_reference.md -------------------------------------------------------------------------------- /tests/markdown-data/list_items_with_undefined_ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list_items_with_undefined_ref.html -------------------------------------------------------------------------------- /tests/markdown-data/list_items_with_undefined_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/list_items_with_undefined_ref.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_amps_and_angle_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_amps_and_angle_encoding.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_amps_and_angle_encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_amps_and_angle_encoding.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_auto_links.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_auto_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_auto_links.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_backslash_escapes.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_backslash_escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_backslash_escapes.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_blockquotes_with_code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_blockquotes_with_code_blocks.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_blockquotes_with_code_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_blockquotes_with_code_blocks.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_horizontal_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_horizontal_rules.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_horizontal_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_horizontal_rules.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_avanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_avanced.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_avanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_avanced.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_comments.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_comments.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_simple.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_inline_html_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_inline_html_simple.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_links_inline_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_links_inline_style.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_links_inline_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_links_inline_style.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_links_reference_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_links_reference_style.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_links_reference_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_links_reference_style.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_literal_quotes_in_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_literal_quotes_in_titles.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_literal_quotes_in_titles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_literal_quotes_in_titles.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_markdown_documentation_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_markdown_documentation_basics.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_markdown_documentation_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_markdown_documentation_basics.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_nested_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_nested_blockquotes.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_nested_blockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_nested_blockquotes.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_ordered_and_unordered_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_ordered_and_unordered_lists.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_strong_and_em_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_strong_and_em_together.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_strong_and_em_together.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_strong_and_em_together.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_tabs.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_tabs.md -------------------------------------------------------------------------------- /tests/markdown-data/md1_tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_tidyness.html -------------------------------------------------------------------------------- /tests/markdown-data/md1_tidyness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/md1_tidyness.md -------------------------------------------------------------------------------- /tests/markdown-data/nested-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/nested-lists.html -------------------------------------------------------------------------------- /tests/markdown-data/nested-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/nested-lists.md -------------------------------------------------------------------------------- /tests/markdown-data/newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/newline.html -------------------------------------------------------------------------------- /tests/markdown-data/newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/newline.md -------------------------------------------------------------------------------- /tests/markdown-data/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/paragraph.html -------------------------------------------------------------------------------- /tests/markdown-data/paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/paragraph.md -------------------------------------------------------------------------------- /tests/markdown-data/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/references.html -------------------------------------------------------------------------------- /tests/markdown-data/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/references.md -------------------------------------------------------------------------------- /tests/markdown-data/specs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/specs.html -------------------------------------------------------------------------------- /tests/markdown-data/specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/specs.md -------------------------------------------------------------------------------- /tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/test_precedence.html -------------------------------------------------------------------------------- /tests/markdown-data/test_precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/test_precedence.md -------------------------------------------------------------------------------- /tests/markdown-data/unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/unicode.html -------------------------------------------------------------------------------- /tests/markdown-data/unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/unicode.md -------------------------------------------------------------------------------- /tests/markdown-data/utf8-do-not-kill-characters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-data/utf8-do-not-kill-characters.html -------------------------------------------------------------------------------- /tests/markdown-data/utf8-do-not-kill-characters.md: -------------------------------------------------------------------------------- 1 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя 2 | 3 | there is a charater, 配 4 | 5 | Arabic Latter "م (M)" -------------------------------------------------------------------------------- /tests/markdown-ol-start-num-data/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-ol-start-num-data/list.html -------------------------------------------------------------------------------- /tests/markdown-ol-start-num-data/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-ol-start-num-data/list.md -------------------------------------------------------------------------------- /tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.md -------------------------------------------------------------------------------- /tests/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebe/markdown/HEAD/tests/profile.php --------------------------------------------------------------------------------