gitextract_2zijr1dr/ ├── .gitignore ├── .travis.yml ├── Changes.md ├── Gruntfile.js ├── README.md ├── bin/ │ └── md2html.js ├── bower.json ├── inc/ │ ├── footer-node.js │ ├── footer-web.js │ ├── header.js │ └── tasks/ │ └── build_markdown.js ├── lib/ │ └── index.js ├── package.json ├── seed.yml ├── src/ │ ├── core.js │ ├── dialects/ │ │ ├── dialect_helpers.js │ │ ├── gruber.js │ │ └── maruku.js │ ├── markdown.js │ ├── markdown_helpers.js │ ├── parser.js │ └── render_tree.js └── test/ ├── features/ │ ├── blockquotes/ │ │ ├── contains_code.json │ │ ├── contains_code.text │ │ ├── lazy_wrapping.json │ │ ├── lazy_wrapping.text │ │ ├── leading_paras.json │ │ ├── leading_paras.text │ │ ├── nested.json │ │ ├── nested.text │ │ ├── simple.json │ │ ├── simple.text │ │ ├── spaceless.json │ │ ├── spaceless.text │ │ ├── spaces_before.json │ │ ├── spaces_before.text │ │ ├── threequotes.json │ │ └── threequotes.text │ ├── code/ │ │ ├── blank_lines.json │ │ ├── blank_lines.text │ │ ├── block.json │ │ ├── block.text │ │ ├── embedded_backtick.json │ │ ├── embedded_backtick.text │ │ ├── horizontal_rules.json │ │ ├── horizontal_rules.text │ │ ├── in_lists.json │ │ ├── in_lists.text │ │ ├── inline.json │ │ ├── inline.text │ │ ├── inline_multiline.json │ │ ├── inline_multiline.text │ │ ├── trailing_para.json │ │ ├── trailing_para.text │ │ ├── with_greater_than.json │ │ └── with_greater_than.text │ ├── definition_lists/ │ │ ├── inline.json │ │ ├── inline.text │ │ ├── long.json │ │ ├── long.text │ │ ├── multiple_definitions.json │ │ ├── multiple_definitions.text │ │ ├── multiple_terms.json │ │ ├── multiple_terms.text │ │ ├── tight.json │ │ └── tight.text │ ├── emphasis/ │ │ ├── multiple_lines.json │ │ ├── multiple_lines.text │ │ ├── nested.json │ │ ├── nested.text │ │ ├── simple.json │ │ └── simple.text │ ├── headers/ │ │ ├── atx.json │ │ ├── atx.text │ │ ├── atx_closing_hashes.json │ │ ├── atx_closing_hashes.text │ │ ├── inline.json │ │ ├── inline.text │ │ ├── setext.json │ │ ├── setext.text │ │ ├── trailing_paras.json │ │ └── trailing_paras.text │ ├── horizontal_rules/ │ │ ├── abutting_blocks.json │ │ ├── abutting_blocks.text │ │ ├── dashes.json │ │ ├── dashes.text │ │ ├── front_matter.json │ │ ├── front_matter.text │ │ ├── leading_spaces.json │ │ ├── leading_spaces.text │ │ ├── long.json │ │ ├── long.text │ │ ├── long_loose.json │ │ ├── long_loose.text │ │ ├── loose_dashes.json │ │ ├── loose_dashes.text │ │ ├── loose_stars.json │ │ ├── loose_stars.text │ │ ├── loose_underscores.json │ │ ├── loose_underscores.text │ │ ├── stars.json │ │ ├── stars.text │ │ ├── underscores.json │ │ └── underscores.text │ ├── images/ │ │ ├── basic.json │ │ ├── basic.text │ │ ├── crotcheted_url.json │ │ ├── crotcheted_url.text │ │ ├── crotcheted_url_with_title.json │ │ ├── crotcheted_url_with_title.text │ │ ├── empty.json │ │ ├── empty.text │ │ ├── incomplete_image.json │ │ ├── incomplete_image.text │ │ ├── inside_link.json │ │ ├── inside_link.text │ │ ├── ref.json │ │ ├── ref.text │ │ ├── spaces_in_href.json │ │ ├── spaces_in_href.text │ │ ├── spaces_round_title.json │ │ ├── spaces_round_title.text │ │ ├── title.json │ │ └── title.text │ ├── linebreaks/ │ │ ├── simple.json │ │ └── simple.text │ ├── links/ │ │ ├── apostrophe.json │ │ ├── apostrophe.text │ │ ├── autolink_email.json │ │ ├── autolink_email.text │ │ ├── autolink_in_code.json │ │ ├── autolink_in_code.text │ │ ├── autolink_url.json │ │ ├── autolink_url.text │ │ ├── broken_brackets.json │ │ ├── broken_brackets.text │ │ ├── broken_link.json │ │ ├── broken_link.text │ │ ├── case_insensitive.json │ │ ├── case_insensitive.text │ │ ├── escaped_broken_link.json │ │ ├── escaped_broken_link.text │ │ ├── implicit.json │ │ ├── implicit.text │ │ ├── in_blockquotes.json │ │ ├── in_blockquotes.text │ │ ├── in_brackets.json │ │ ├── in_brackets.text │ │ ├── inline.json │ │ ├── inline.text │ │ ├── inline_with_newline.json │ │ ├── inline_with_newline.text │ │ ├── inline_with_title.json │ │ ├── inline_with_title.text │ │ ├── missing_references.json │ │ ├── missing_references.text │ │ ├── no_closing.json │ │ ├── no_closing.text │ │ ├── parens_escaped_inline.json │ │ ├── parens_escaped_inline.text │ │ ├── parens_inline.json │ │ ├── parens_inline.text │ │ ├── parens_reference.json │ │ ├── parens_reference.text │ │ ├── ref_reuse.json │ │ ├── ref_reuse.text │ │ ├── ref_with_image_ref.json │ │ ├── ref_with_image_ref.text │ │ ├── reference.json │ │ ├── reference.text │ │ ├── reference_missing.json │ │ ├── reference_missing.text │ │ ├── reference_with_newline.json │ │ ├── reference_with_newline.text │ │ ├── reference_with_newline_and_space.json │ │ ├── reference_with_newline_and_space.text │ │ ├── reference_with_quote.json │ │ ├── reference_with_quote.text │ │ ├── reference_with_space.json │ │ ├── reference_with_space.text │ │ ├── spaces_in_url.json │ │ └── spaces_in_url.text │ ├── lists/ │ │ ├── bullet_types.json │ │ ├── bullet_types.text │ │ ├── hr_abutting.json │ │ ├── hr_abutting.text │ │ ├── hr_inside.json │ │ ├── hr_inside.text │ │ ├── lazy_wrapping.json │ │ ├── lazy_wrapping.text │ │ ├── leading_whitespace.json │ │ ├── leading_whitespace.text │ │ ├── loose.json │ │ ├── loose.text │ │ ├── loose_with_inline.json │ │ ├── loose_with_inline.text │ │ ├── multiline_inline.json │ │ ├── multiline_inline.text │ │ ├── nested.json │ │ ├── nested.text │ │ ├── nested_para.json │ │ ├── nested_para.text │ │ ├── numeric.json │ │ ├── numeric.text │ │ ├── quote_inside.json │ │ ├── quote_inside.text │ │ ├── references.json │ │ ├── references.text │ │ ├── tight.json │ │ └── tight.text │ ├── meta/ │ │ ├── attribute.json │ │ ├── attribute.text │ │ ├── class.json │ │ ├── class.text │ │ ├── code.json │ │ ├── code.text │ │ ├── document.json │ │ ├── document.text │ │ ├── id.json │ │ ├── id.text │ │ ├── inline.json │ │ ├── inline.text │ │ ├── inner_whitespace.json │ │ ├── inner_whitespace.text │ │ ├── leading_whitespace.json │ │ ├── leading_whitespace.text │ │ ├── list.json │ │ ├── list.text │ │ ├── list.todo │ │ ├── multiple_classes.json │ │ ├── multiple_classes.text │ │ ├── quoted.json │ │ └── quoted.text │ └── tables/ │ ├── align.json │ ├── align.text │ ├── compact.json │ ├── compact.text │ ├── inline_formatting.json │ ├── inline_formatting.text │ ├── pipe_escape.json │ ├── pipe_escape.text │ ├── simple_leading.json │ ├── simple_leading.text │ ├── simple_no_leading.json │ ├── simple_no_leading.text │ ├── spaces_tolerance.json │ └── spaces_tolerance.text ├── features.t.js ├── fixtures/ │ ├── Markdown-from-MDTest1.1.mdtest/ │ │ ├── Amps_and_angle_encoding.json │ │ ├── Amps_and_angle_encoding.text │ │ ├── Amps_and_angle_encoding.xhtml │ │ ├── Auto_links.json │ │ ├── Auto_links.text │ │ ├── Auto_links.xhtml │ │ ├── Backslash_escapes.json │ │ ├── Backslash_escapes.text │ │ ├── Backslash_escapes.xhtml │ │ ├── Blockquotes_with_code_blocks.json │ │ ├── Blockquotes_with_code_blocks.text │ │ ├── Blockquotes_with_code_blocks.xhtml │ │ ├── Code_Blocks.json │ │ ├── Code_Blocks.text │ │ ├── Code_Blocks.xhtml │ │ ├── Code_Spans.json │ │ ├── Code_Spans.text │ │ ├── Code_Spans.xhtml │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.json │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.text │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.xhtml │ │ ├── Horizontal_rules.json │ │ ├── Horizontal_rules.text │ │ ├── Horizontal_rules.xhtml │ │ ├── Images.json │ │ ├── Images.text │ │ ├── Images.xhtml │ │ ├── Inline_HTML_(Advanced).json │ │ ├── Inline_HTML_(Advanced).text │ │ ├── Inline_HTML_(Advanced).xhtml │ │ ├── Inline_HTML_(Simple).html │ │ ├── Inline_HTML_(Simple).json │ │ ├── Inline_HTML_(Simple).text │ │ ├── Inline_HTML_comments.html │ │ ├── Inline_HTML_comments.json │ │ ├── Inline_HTML_comments.text │ │ ├── Links_inline_style.json │ │ ├── Links_inline_style.text │ │ ├── Links_inline_style.xhtml │ │ ├── Links_reference_style.json │ │ ├── Links_reference_style.text │ │ ├── Links_reference_style.xhtml │ │ ├── Links_shortcut_references.json │ │ ├── Links_shortcut_references.text │ │ ├── Links_shortcut_references.xhtml │ │ ├── Literal_quotes_in_titles.json │ │ ├── Literal_quotes_in_titles.text │ │ ├── Literal_quotes_in_titles.xhtml │ │ ├── Markdown_Documentation_-_Basics.json │ │ ├── Markdown_Documentation_-_Basics.text │ │ ├── Markdown_Documentation_-_Basics.xhtml │ │ ├── Markdown_Documentation_-_Syntax.json │ │ ├── Markdown_Documentation_-_Syntax.text │ │ ├── Markdown_Documentation_-_Syntax.xhtml │ │ ├── Nested_blockquotes.json │ │ ├── Nested_blockquotes.text │ │ ├── Nested_blockquotes.xhtml │ │ ├── Ordered_and_unordered_lists.json │ │ ├── Ordered_and_unordered_lists.text │ │ ├── Ordered_and_unordered_lists.xhtml │ │ ├── Strong_and_em_together.json │ │ ├── Strong_and_em_together.text │ │ ├── Strong_and_em_together.xhtml │ │ ├── Tabs.json │ │ ├── Tabs.text │ │ ├── Tabs.xhtml │ │ ├── Tidyness.json │ │ ├── Tidyness.text │ │ └── Tidyness.xhtml │ ├── PHP_Markdown-from-MDTest1.1.mdtest/ │ │ ├── Backslash_escapes.json │ │ ├── Backslash_escapes.text │ │ ├── Backslash_escapes.xhtml │ │ ├── Code_Spans.json │ │ ├── Code_Spans.text │ │ ├── Code_Spans.xhtml │ │ ├── Code_block_in_a_list_item.json │ │ ├── Code_block_in_a_list_item.text │ │ ├── Code_block_in_a_list_item.xhtml │ │ ├── Email_auto_links.json │ │ ├── Email_auto_links.text │ │ ├── Email_auto_links.xhtml │ │ ├── Emphasis.json │ │ ├── Emphasis.text │ │ ├── Emphasis.xhtml │ │ ├── Headers.json │ │ ├── Headers.text │ │ ├── Headers.xhtml │ │ ├── Horizontal_Rules.json │ │ ├── Horizontal_Rules.text │ │ ├── Horizontal_Rules.xhtml │ │ ├── Inline_HTML_(Simple).html │ │ ├── Inline_HTML_(Simple).json │ │ ├── Inline_HTML_(Simple).text │ │ ├── Inline_HTML_(Span).json │ │ ├── Inline_HTML_(Span).text │ │ ├── Inline_HTML_(Span).xhtml │ │ ├── Inline_HTML_comments.html │ │ ├── Inline_HTML_comments.json │ │ ├── Inline_HTML_comments.text │ │ ├── Ins_and_del.json │ │ ├── Ins_and_del.text │ │ ├── Ins_and_del.xhtml │ │ ├── Links_inline_style.json │ │ ├── Links_inline_style.text │ │ ├── Links_inline_style.xhtml │ │ ├── MD5_Hashes.json │ │ ├── MD5_Hashes.text │ │ ├── MD5_Hashes.xhtml │ │ ├── Nesting.json │ │ ├── Nesting.text │ │ ├── Nesting.xhtml │ │ ├── PHP-Specific_Bugs.json │ │ ├── PHP-Specific_Bugs.text │ │ ├── PHP-Specific_Bugs.xhtml │ │ ├── Parens_in_URL.json │ │ ├── Parens_in_URL.text │ │ ├── Parens_in_URL.xhtml │ │ ├── Tight_blocks.json │ │ ├── Tight_blocks.text │ │ └── Tight_blocks.xhtml │ ├── README │ ├── Text-Markdown.mdtest/ │ │ ├── CoreDumps5.8.json │ │ ├── CoreDumps5.8.text │ │ ├── CoreDumps5.8.xhtml │ │ ├── Emphasis.json │ │ ├── Emphasis.text │ │ ├── Emphasis.xhtml │ │ ├── HTML-Comment-encoding.json │ │ ├── HTML-Comment-encoding.text │ │ ├── HTML-Comment-encoding.xhtml │ │ ├── HTML5-attributes.html │ │ ├── HTML5-attributes.json │ │ ├── HTML5-attributes.text │ │ ├── Links_brackets.json │ │ ├── Links_brackets.text │ │ ├── Links_brackets.xhtml │ │ ├── Links_multiline_bugs_1.html │ │ ├── Links_multiline_bugs_1.json │ │ ├── Links_multiline_bugs_1.text │ │ ├── Links_multiline_bugs_2.html │ │ ├── Links_multiline_bugs_2.json │ │ ├── Links_multiline_bugs_2.text │ │ ├── Links_reference_style.json │ │ ├── Links_reference_style.text │ │ ├── Links_reference_style.xhtml │ │ ├── Lists-multilevel-md5-edgecase.json │ │ ├── Lists-multilevel-md5-edgecase.text │ │ ├── Lists-multilevel-md5-edgecase.xhtml │ │ ├── PHP-ASP_tags.json │ │ ├── PHP-ASP_tags.text │ │ ├── PHP-ASP_tags.xhtml │ │ ├── Unicode.json │ │ ├── Unicode.text │ │ └── Unicode.xhtml │ ├── docs-maruku-unittest/ │ │ ├── abbreviations.html │ │ ├── abbreviations.json │ │ ├── abbreviations.text │ │ ├── alt.html │ │ ├── alt.json │ │ ├── alt.text │ │ ├── blank.html │ │ ├── blank.json │ │ ├── blank.text │ │ ├── blanks_in_code.html │ │ ├── blanks_in_code.json │ │ ├── blanks_in_code.text │ │ ├── bug_def.html │ │ ├── bug_def.json │ │ ├── bug_def.text │ │ ├── bug_table.html │ │ ├── bug_table.json │ │ ├── bug_table.text │ │ ├── code.html │ │ ├── code.json │ │ ├── code.text │ │ ├── code2.html │ │ ├── code2.json │ │ ├── code2.text │ │ ├── code3.html │ │ ├── code3.json │ │ ├── code3.text │ │ ├── convert.pl │ │ ├── data_loss.html │ │ ├── data_loss.json │ │ ├── data_loss.text │ │ ├── easy.html │ │ ├── easy.json │ │ ├── easy.text │ │ ├── email.html │ │ ├── email.json │ │ ├── email.text │ │ ├── entities.html │ │ ├── entities.json │ │ ├── entities.text │ │ ├── escaping.html │ │ ├── escaping.json │ │ ├── escaping.text │ │ ├── extra_dl.html │ │ ├── extra_dl.json │ │ ├── extra_dl.text │ │ ├── extra_header_id.html │ │ ├── extra_header_id.json │ │ ├── extra_header_id.text │ │ ├── extra_table1.html │ │ ├── extra_table1.json │ │ ├── extra_table1.text │ │ ├── footnotes.html │ │ ├── footnotes.json │ │ ├── footnotes.text │ │ ├── headers.html │ │ ├── headers.json │ │ ├── headers.text │ │ ├── hex_entities.html │ │ ├── hex_entities.json │ │ ├── hex_entities.text │ │ ├── hrule.html │ │ ├── hrule.json │ │ ├── hrule.text │ │ ├── html2.html │ │ ├── html2.json │ │ ├── html2.text │ │ ├── html3.html │ │ ├── html3.json │ │ ├── html3.text │ │ ├── html4.html │ │ ├── html4.json │ │ ├── html4.text │ │ ├── html5.html │ │ ├── html5.json │ │ ├── html5.text │ │ ├── ie.html │ │ ├── ie.json │ │ ├── ie.text │ │ ├── images.html │ │ ├── images.json │ │ ├── images.text │ │ ├── images2.html │ │ ├── images2.json │ │ ├── images2.text │ │ ├── inline_html.html │ │ ├── inline_html.json │ │ ├── inline_html.text │ │ ├── inline_html2.html │ │ ├── inline_html2.json │ │ ├── inline_html2.text │ │ ├── links.html │ │ ├── links.json │ │ ├── links.text │ │ ├── list1.html │ │ ├── list1.json │ │ ├── list1.text │ │ ├── list2.html │ │ ├── list2.json │ │ ├── list2.text │ │ ├── list3.html │ │ ├── list3.json │ │ ├── list3.text │ │ ├── list4.html │ │ ├── list4.json │ │ ├── list4.text │ │ ├── lists.html │ │ ├── lists.json │ │ ├── lists.text │ │ ├── lists11.html │ │ ├── lists11.json │ │ ├── lists11.text │ │ ├── lists6.html │ │ ├── lists6.json │ │ ├── lists6.text │ │ ├── lists7.html │ │ ├── lists7.json │ │ ├── lists7.text │ │ ├── lists7b.html │ │ ├── lists7b.json │ │ ├── lists7b.text │ │ ├── lists8.html │ │ ├── lists8.json │ │ ├── lists8.text │ │ ├── lists9.html │ │ ├── lists9.json │ │ ├── lists9.text │ │ ├── lists_after_paragraph.html │ │ ├── lists_after_paragraph.json │ │ ├── lists_after_paragraph.text │ │ ├── lists_ol.html │ │ ├── lists_ol.json │ │ ├── lists_ol.text │ │ ├── loss.html │ │ ├── loss.json │ │ ├── loss.text │ │ ├── misc_sw.html │ │ ├── misc_sw.json │ │ ├── misc_sw.text │ │ ├── olist.html │ │ ├── olist.json │ │ ├── olist.text │ │ ├── one.html │ │ ├── one.json │ │ ├── one.text │ │ ├── paragraph.html │ │ ├── paragraph.json │ │ ├── paragraph.text │ │ ├── paragraphs.html │ │ ├── paragraphs.json │ │ ├── paragraphs.text │ │ ├── smartypants.html │ │ ├── smartypants.json │ │ ├── smartypants.text │ │ ├── syntax_hl.html │ │ ├── syntax_hl.json │ │ ├── syntax_hl.text │ │ ├── table_attributes.html │ │ ├── table_attributes.json │ │ ├── table_attributes.text │ │ ├── test.html │ │ ├── test.json │ │ ├── test.text │ │ ├── wrapping.html │ │ ├── wrapping.json │ │ ├── wrapping.text │ │ ├── xml.html │ │ ├── xml.json │ │ ├── xml.text │ │ ├── xml2.html │ │ ├── xml2.json │ │ ├── xml2.text │ │ ├── xml3.html │ │ ├── xml3.json │ │ ├── xml3.text │ │ ├── xml_instruction.html │ │ ├── xml_instruction.json │ │ └── xml_instruction.text │ ├── docs-php-markdown/ │ │ ├── Backslash_escapes.html │ │ ├── Backslash_escapes.json │ │ ├── Backslash_escapes.text │ │ ├── Code_Spans.html │ │ ├── Code_Spans.json │ │ ├── Code_Spans.text │ │ ├── Code_block_in_a_list_item.html │ │ ├── Code_block_in_a_list_item.json │ │ ├── Code_block_in_a_list_item.text │ │ ├── Headers.html │ │ ├── Headers.json │ │ ├── Headers.text │ │ ├── Images_(Untitled).html │ │ ├── Images_(Untitled).json │ │ ├── Images_(Untitled).text │ │ ├── Inline_HTML_(Simple).html │ │ ├── Inline_HTML_(Simple).json │ │ ├── Inline_HTML_(Simple).text │ │ ├── Inline_HTML_comments.html │ │ ├── Inline_HTML_comments.json │ │ ├── Inline_HTML_comments.text │ │ ├── PHP-Specific_Bugs.html │ │ ├── PHP-Specific_Bugs.json │ │ ├── PHP-Specific_Bugs.text │ │ ├── Tight_blocks.html │ │ ├── Tight_blocks.json │ │ └── Tight_blocks.text │ ├── docs-php-markdown-extra/ │ │ ├── Abbr.html │ │ ├── Abbr.json │ │ ├── Abbr.text │ │ ├── Definition_Lists.html │ │ ├── Definition_Lists.json │ │ ├── Definition_Lists.text │ │ ├── Emphasis.html │ │ ├── Emphasis.json │ │ ├── Emphasis.text │ │ ├── Footnotes.html │ │ ├── Footnotes.json │ │ ├── Footnotes.text │ │ ├── Inline_HTML_with_Markdown_content.html │ │ ├── Inline_HTML_with_Markdown_content.json │ │ ├── Inline_HTML_with_Markdown_content.text │ │ ├── Tables.html │ │ ├── Tables.json │ │ └── Tables.text │ ├── docs-php-markdown-todo/ │ │ ├── Email_auto_links.html │ │ ├── Email_auto_links.json │ │ ├── Email_auto_links.text │ │ ├── Emphasis.html │ │ ├── Emphasis.json │ │ ├── Emphasis.text │ │ ├── Inline_HTML_(Span).html │ │ ├── Inline_HTML_(Span).json │ │ ├── Inline_HTML_(Span).text │ │ ├── Ins_and_del.json │ │ ├── Ins_and_del.text │ │ ├── Ins_and_del.xhtml │ │ ├── Links_inline_style.html │ │ ├── Links_inline_style.json │ │ ├── Links_inline_style.text │ │ ├── Nesting.html │ │ ├── Nesting.json │ │ ├── Nesting.text │ │ ├── Parens_in_URL.html │ │ ├── Parens_in_URL.json │ │ └── Parens_in_URL.text │ └── docs-pythonmarkdown2-tm-cases-pass/ │ ├── auto_link.html │ ├── auto_link.json │ ├── auto_link.text │ ├── auto_link_safe_mode.html │ ├── auto_link_safe_mode.json │ ├── auto_link_safe_mode.opts │ ├── auto_link_safe_mode.text │ ├── basic_safe_mode.html │ ├── basic_safe_mode.json │ ├── basic_safe_mode.opts │ ├── basic_safe_mode.text │ ├── basic_safe_mode_escape.html │ ├── basic_safe_mode_escape.json │ ├── basic_safe_mode_escape.opts │ ├── basic_safe_mode_escape.text │ ├── blockquote.html │ ├── blockquote.json │ ├── blockquote.text │ ├── blockquote_with_pre.html │ ├── blockquote_with_pre.json │ ├── blockquote_with_pre.text │ ├── code_block_with_tabs.html │ ├── code_block_with_tabs.json │ ├── code_block_with_tabs.text │ ├── code_safe_emphasis.html │ ├── code_safe_emphasis.json │ ├── code_safe_emphasis.opts │ ├── code_safe_emphasis.text │ ├── codeblock.html │ ├── codeblock.json │ ├── codeblock.text │ ├── codespans.html │ ├── codespans.json │ ├── codespans.text │ ├── codespans_safe_mode.html │ ├── codespans_safe_mode.json │ ├── codespans_safe_mode.opts │ ├── codespans_safe_mode.text │ ├── emacs_head_vars.html │ ├── emacs_head_vars.json │ ├── emacs_head_vars.text │ ├── emacs_tail_vars.html │ ├── emacs_tail_vars.json │ ├── emacs_tail_vars.text │ ├── emphasis.html │ ├── emphasis.json │ ├── emphasis.text │ ├── escapes.html │ ├── escapes.json │ ├── escapes.text │ ├── footnotes.html │ ├── footnotes.json │ ├── footnotes.opts │ ├── footnotes.text │ ├── footnotes_letters.html │ ├── footnotes_letters.json │ ├── footnotes_letters.opts │ ├── footnotes_letters.text │ ├── footnotes_markup.html │ ├── footnotes_markup.json │ ├── footnotes_markup.opts │ ├── footnotes_markup.text │ ├── footnotes_safe_mode_escape.html │ ├── footnotes_safe_mode_escape.json │ ├── footnotes_safe_mode_escape.opts │ ├── footnotes_safe_mode_escape.text │ ├── header.html │ ├── header.json │ ├── header.text │ ├── hr.html │ ├── hr.json │ ├── hr.text │ ├── img_in_link.html │ ├── img_in_link.json │ ├── img_in_link.text │ ├── inline_links.html │ ├── inline_links.json │ ├── inline_links.text │ ├── issue2_safe_mode_borks_markup.html │ ├── issue2_safe_mode_borks_markup.json │ ├── issue2_safe_mode_borks_markup.opts │ ├── issue2_safe_mode_borks_markup.text │ ├── link_defn_alt_title_delims.html │ ├── link_defn_alt_title_delims.json │ ├── link_defn_alt_title_delims.text │ ├── link_patterns.html │ ├── link_patterns.json │ ├── link_patterns.opts │ ├── link_patterns.text │ ├── link_patterns_double_hit.html │ ├── link_patterns_double_hit.json │ ├── link_patterns_double_hit.opts │ ├── link_patterns_double_hit.text │ ├── link_patterns_edge_cases.html │ ├── link_patterns_edge_cases.json │ ├── link_patterns_edge_cases.opts │ ├── link_patterns_edge_cases.text │ ├── lists.html │ ├── lists.json │ ├── lists.text │ ├── mismatched_footnotes.html │ ├── mismatched_footnotes.json │ ├── mismatched_footnotes.opts │ ├── mismatched_footnotes.text │ ├── missing_link_defn.html │ ├── missing_link_defn.json │ ├── missing_link_defn.text │ ├── nested_list.html │ ├── nested_list.json │ ├── nested_list.text │ ├── nested_list_safe_mode.html │ ├── nested_list_safe_mode.json │ ├── nested_list_safe_mode.opts │ ├── nested_list_safe_mode.text │ ├── parens_in_url_4.html │ ├── parens_in_url_4.json │ ├── parens_in_url_4.text │ ├── raw_html.html │ ├── raw_html.json │ ├── raw_html.text │ ├── ref_links.html │ ├── ref_links.json │ ├── ref_links.text │ ├── sublist-para.html │ ├── sublist-para.json │ ├── sublist-para.text │ ├── syntax_color.html │ ├── syntax_color.json │ ├── syntax_color.opts │ ├── syntax_color.text │ ├── tricky_anchors.html │ ├── tricky_anchors.json │ ├── tricky_anchors.text │ ├── underline_in_autolink.html │ ├── underline_in_autolink.json │ └── underline_in_autolink.text ├── html_renderer.t.js ├── interface.t.js ├── regressions.t.js └── render_tree.t.js