gitdown 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -0
- data/COPYING +24 -0
- data/GPL +674 -0
- data/README +43 -0
- data/Rakefile +370 -0
- data/VERSION +1 -0
- data/benchmark/benchmark.rb +34 -0
- data/benchmark/benchmark.sh +74 -0
- data/benchmark/generate_data.rb +119 -0
- data/benchmark/mdbasics.text +306 -0
- data/benchmark/mdsyntax.text +888 -0
- data/benchmark/testing.sh +9 -0
- data/benchmark/timing.sh +10 -0
- data/bin/kramdown +78 -0
- data/data/kramdown/document.html +18 -0
- data/data/kramdown/document.latex +43 -0
- data/doc/default.scss.css +530 -0
- data/doc/default.template +80 -0
- data/doc/documentation.page +71 -0
- data/doc/index.page +98 -0
- data/doc/installation.page +88 -0
- data/doc/links.markdown +6 -0
- data/doc/news.feed +10 -0
- data/doc/news.page +28 -0
- data/doc/quickref.page +585 -0
- data/doc/syntax.page +1644 -0
- data/doc/tests.page +52 -0
- data/doc/virtual +2 -0
- data/lib/kramdown.rb +23 -0
- data/lib/kramdown/compatibility.rb +35 -0
- data/lib/kramdown/converter.rb +41 -0
- data/lib/kramdown/converter/base.rb +169 -0
- data/lib/kramdown/converter/html.rb +410 -0
- data/lib/kramdown/converter/kramdown.rb +422 -0
- data/lib/kramdown/converter/latex.rb +607 -0
- data/lib/kramdown/converter/toc.rb +82 -0
- data/lib/kramdown/document.rb +117 -0
- data/lib/kramdown/element.rb +524 -0
- data/lib/kramdown/error.rb +30 -0
- data/lib/kramdown/options.rb +373 -0
- data/lib/kramdown/parser.rb +40 -0
- data/lib/kramdown/parser/base.rb +136 -0
- data/lib/kramdown/parser/github_markdown.rb +44 -0
- data/lib/kramdown/parser/github_markdown/github_codeblock.rb +44 -0
- data/lib/kramdown/parser/html.rb +570 -0
- data/lib/kramdown/parser/kramdown.rb +338 -0
- data/lib/kramdown/parser/kramdown/abbreviation.rb +71 -0
- data/lib/kramdown/parser/kramdown/autolink.rb +53 -0
- data/lib/kramdown/parser/kramdown/blank_line.rb +43 -0
- data/lib/kramdown/parser/kramdown/block_boundary.rb +46 -0
- data/lib/kramdown/parser/kramdown/blockquote.rb +51 -0
- data/lib/kramdown/parser/kramdown/codeblock.rb +63 -0
- data/lib/kramdown/parser/kramdown/codespan.rb +56 -0
- data/lib/kramdown/parser/kramdown/emphasis.rb +70 -0
- data/lib/kramdown/parser/kramdown/eob.rb +39 -0
- data/lib/kramdown/parser/kramdown/escaped_chars.rb +38 -0
- data/lib/kramdown/parser/kramdown/extensions.rb +204 -0
- data/lib/kramdown/parser/kramdown/footnote.rb +74 -0
- data/lib/kramdown/parser/kramdown/header.rb +68 -0
- data/lib/kramdown/parser/kramdown/horizontal_rule.rb +39 -0
- data/lib/kramdown/parser/kramdown/html.rb +169 -0
- data/lib/kramdown/parser/kramdown/html_entity.rb +44 -0
- data/lib/kramdown/parser/kramdown/line_break.rb +38 -0
- data/lib/kramdown/parser/kramdown/link.rb +148 -0
- data/lib/kramdown/parser/kramdown/list.rb +240 -0
- data/lib/kramdown/parser/kramdown/math.rb +64 -0
- data/lib/kramdown/parser/kramdown/paragraph.rb +63 -0
- data/lib/kramdown/parser/kramdown/smart_quotes.rb +214 -0
- data/lib/kramdown/parser/kramdown/table.rb +178 -0
- data/lib/kramdown/parser/kramdown/typographic_symbol.rb +52 -0
- data/lib/kramdown/parser/markdown.rb +69 -0
- data/lib/kramdown/utils.rb +37 -0
- data/lib/kramdown/utils/entities.rb +348 -0
- data/lib/kramdown/utils/html.rb +85 -0
- data/lib/kramdown/utils/ordered_hash.rb +100 -0
- data/lib/kramdown/version.rb +28 -0
- data/setup.rb +1585 -0
- data/test/run_tests.rb +59 -0
- data/test/test_files.rb +197 -0
- data/test/testcases/block/01_blank_line/spaces.html +1 -0
- data/test/testcases/block/01_blank_line/spaces.text +3 -0
- data/test/testcases/block/01_blank_line/tabs.html +1 -0
- data/test/testcases/block/01_blank_line/tabs.text +6 -0
- data/test/testcases/block/02_eob/beginning.html +1 -0
- data/test/testcases/block/02_eob/beginning.text +3 -0
- data/test/testcases/block/02_eob/end.html +1 -0
- data/test/testcases/block/02_eob/end.text +3 -0
- data/test/testcases/block/02_eob/middle.html +1 -0
- data/test/testcases/block/02_eob/middle.text +5 -0
- data/test/testcases/block/03_paragraph/indented.html +18 -0
- data/test/testcases/block/03_paragraph/indented.text +19 -0
- data/test/testcases/block/03_paragraph/no_newline_at_end.html +5 -0
- data/test/testcases/block/03_paragraph/no_newline_at_end.text +5 -0
- data/test/testcases/block/03_paragraph/one_para.html +1 -0
- data/test/testcases/block/03_paragraph/one_para.text +1 -0
- data/test/testcases/block/03_paragraph/two_para.html +4 -0
- data/test/testcases/block/03_paragraph/two_para.text +4 -0
- data/test/testcases/block/04_header/atx_header.html +37 -0
- data/test/testcases/block/04_header/atx_header.text +34 -0
- data/test/testcases/block/04_header/atx_header_no_newline_at_end.html +1 -0
- data/test/testcases/block/04_header/atx_header_no_newline_at_end.text +1 -0
- data/test/testcases/block/04_header/setext_header.html +30 -0
- data/test/testcases/block/04_header/setext_header.html.19 +30 -0
- data/test/testcases/block/04_header/setext_header.text +36 -0
- data/test/testcases/block/04_header/setext_header_no_newline_at_end.html +1 -0
- data/test/testcases/block/04_header/setext_header_no_newline_at_end.text +2 -0
- data/test/testcases/block/04_header/with_auto_id_prefix.html +3 -0
- data/test/testcases/block/04_header/with_auto_id_prefix.options +2 -0
- data/test/testcases/block/04_header/with_auto_id_prefix.text +3 -0
- data/test/testcases/block/04_header/with_auto_ids.html +17 -0
- data/test/testcases/block/04_header/with_auto_ids.options +1 -0
- data/test/testcases/block/04_header/with_auto_ids.text +19 -0
- data/test/testcases/block/05_blockquote/indented.html +25 -0
- data/test/testcases/block/05_blockquote/indented.text +14 -0
- data/test/testcases/block/05_blockquote/lazy.html +34 -0
- data/test/testcases/block/05_blockquote/lazy.text +20 -0
- data/test/testcases/block/05_blockquote/nested.html +10 -0
- data/test/testcases/block/05_blockquote/nested.text +6 -0
- data/test/testcases/block/05_blockquote/no_newline_at_end.html +4 -0
- data/test/testcases/block/05_blockquote/no_newline_at_end.text +2 -0
- data/test/testcases/block/05_blockquote/very_long_line.html +3 -0
- data/test/testcases/block/05_blockquote/very_long_line.text +1 -0
- data/test/testcases/block/05_blockquote/with_code_blocks.html +15 -0
- data/test/testcases/block/05_blockquote/with_code_blocks.text +11 -0
- data/test/testcases/block/06_codeblock/error.html +4 -0
- data/test/testcases/block/06_codeblock/error.text +4 -0
- data/test/testcases/block/06_codeblock/lazy.html +4 -0
- data/test/testcases/block/06_codeblock/lazy.text +5 -0
- data/test/testcases/block/06_codeblock/no_newline_at_end.html +2 -0
- data/test/testcases/block/06_codeblock/no_newline_at_end.text +1 -0
- data/test/testcases/block/06_codeblock/no_newline_at_end_1.html +2 -0
- data/test/testcases/block/06_codeblock/no_newline_at_end_1.text +2 -0
- data/test/testcases/block/06_codeblock/normal.html +13 -0
- data/test/testcases/block/06_codeblock/normal.text +10 -0
- data/test/testcases/block/06_codeblock/tilde_syntax.html +7 -0
- data/test/testcases/block/06_codeblock/tilde_syntax.text +9 -0
- data/test/testcases/block/06_codeblock/whitespace.html +3 -0
- data/test/testcases/block/06_codeblock/whitespace.text +3 -0
- data/test/testcases/block/06_codeblock/with_blank_line.html +13 -0
- data/test/testcases/block/06_codeblock/with_blank_line.text +12 -0
- data/test/testcases/block/06_codeblock/with_eob_marker.html +6 -0
- data/test/testcases/block/06_codeblock/with_eob_marker.text +5 -0
- data/test/testcases/block/06_codeblock/with_ial.html +6 -0
- data/test/testcases/block/06_codeblock/with_ial.text +5 -0
- data/test/testcases/block/07_horizontal_rule/error.html +7 -0
- data/test/testcases/block/07_horizontal_rule/error.html.19 +7 -0
- data/test/testcases/block/07_horizontal_rule/error.text +7 -0
- data/test/testcases/block/07_horizontal_rule/normal.html +17 -0
- data/test/testcases/block/07_horizontal_rule/normal.text +17 -0
- data/test/testcases/block/07_horizontal_rule/sepspaces.html +3 -0
- data/test/testcases/block/07_horizontal_rule/sepspaces.text +3 -0
- data/test/testcases/block/07_horizontal_rule/septabs.html +3 -0
- data/test/testcases/block/07_horizontal_rule/septabs.text +3 -0
- data/test/testcases/block/08_list/escaping.html +17 -0
- data/test/testcases/block/08_list/escaping.text +17 -0
- data/test/testcases/block/08_list/item_ial.html +10 -0
- data/test/testcases/block/08_list/item_ial.text +8 -0
- data/test/testcases/block/08_list/lazy.html +39 -0
- data/test/testcases/block/08_list/lazy.text +29 -0
- data/test/testcases/block/08_list/list_and_hr.html +9 -0
- data/test/testcases/block/08_list/list_and_hr.text +5 -0
- data/test/testcases/block/08_list/list_and_others.html +40 -0
- data/test/testcases/block/08_list/list_and_others.text +26 -0
- data/test/testcases/block/08_list/mixed.html +117 -0
- data/test/testcases/block/08_list/mixed.text +66 -0
- data/test/testcases/block/08_list/nested.html +17 -0
- data/test/testcases/block/08_list/nested.text +7 -0
- data/test/testcases/block/08_list/other_first_element.html +39 -0
- data/test/testcases/block/08_list/other_first_element.text +18 -0
- data/test/testcases/block/08_list/simple_ol.html +19 -0
- data/test/testcases/block/08_list/simple_ol.text +13 -0
- data/test/testcases/block/08_list/simple_ul.html +48 -0
- data/test/testcases/block/08_list/simple_ul.text +36 -0
- data/test/testcases/block/08_list/single_item.html +3 -0
- data/test/testcases/block/08_list/single_item.text +1 -0
- data/test/testcases/block/08_list/special_cases.html +55 -0
- data/test/testcases/block/08_list/special_cases.text +35 -0
- data/test/testcases/block/09_html/comment.html +18 -0
- data/test/testcases/block/09_html/comment.text +15 -0
- data/test/testcases/block/09_html/content_model/deflists.html +6 -0
- data/test/testcases/block/09_html/content_model/deflists.options +1 -0
- data/test/testcases/block/09_html/content_model/deflists.text +6 -0
- data/test/testcases/block/09_html/content_model/tables.html +14 -0
- data/test/testcases/block/09_html/content_model/tables.options +1 -0
- data/test/testcases/block/09_html/content_model/tables.text +14 -0
- data/test/testcases/block/09_html/html_and_codeblocks.html +15 -0
- data/test/testcases/block/09_html/html_and_codeblocks.options +1 -0
- data/test/testcases/block/09_html/html_and_codeblocks.text +13 -0
- data/test/testcases/block/09_html/html_and_headers.html +5 -0
- data/test/testcases/block/09_html/html_and_headers.text +6 -0
- data/test/testcases/block/09_html/html_to_native/code.html +10 -0
- data/test/testcases/block/09_html/html_to_native/code.text +9 -0
- data/test/testcases/block/09_html/html_to_native/comment.html +7 -0
- data/test/testcases/block/09_html/html_to_native/comment.text +8 -0
- data/test/testcases/block/09_html/html_to_native/emphasis.html +6 -0
- data/test/testcases/block/09_html/html_to_native/emphasis.text +6 -0
- data/test/testcases/block/09_html/html_to_native/entity.html +1 -0
- data/test/testcases/block/09_html/html_to_native/entity.text +1 -0
- data/test/testcases/block/09_html/html_to_native/header.html +6 -0
- data/test/testcases/block/09_html/html_to_native/header.options +2 -0
- data/test/testcases/block/09_html/html_to_native/header.text +6 -0
- data/test/testcases/block/09_html/html_to_native/list_dl.html +8 -0
- data/test/testcases/block/09_html/html_to_native/list_dl.text +8 -0
- data/test/testcases/block/09_html/html_to_native/list_ol.html +15 -0
- data/test/testcases/block/09_html/html_to_native/list_ol.text +17 -0
- data/test/testcases/block/09_html/html_to_native/list_ul.html +19 -0
- data/test/testcases/block/09_html/html_to_native/list_ul.text +22 -0
- data/test/testcases/block/09_html/html_to_native/options +1 -0
- data/test/testcases/block/09_html/html_to_native/paragraph.html +3 -0
- data/test/testcases/block/09_html/html_to_native/paragraph.text +4 -0
- data/test/testcases/block/09_html/html_to_native/table_normal.html +12 -0
- data/test/testcases/block/09_html/html_to_native/table_normal.text +12 -0
- data/test/testcases/block/09_html/html_to_native/table_simple.html +48 -0
- data/test/testcases/block/09_html/html_to_native/table_simple.text +56 -0
- data/test/testcases/block/09_html/html_to_native/typography.html +1 -0
- data/test/testcases/block/09_html/html_to_native/typography.html.19 +1 -0
- data/test/testcases/block/09_html/html_to_native/typography.text +1 -0
- data/test/testcases/block/09_html/invalid_html_1.html +5 -0
- data/test/testcases/block/09_html/invalid_html_1.text +5 -0
- data/test/testcases/block/09_html/invalid_html_2.html +5 -0
- data/test/testcases/block/09_html/invalid_html_2.text +5 -0
- data/test/testcases/block/09_html/markdown_attr.html +38 -0
- data/test/testcases/block/09_html/markdown_attr.text +38 -0
- data/test/testcases/block/09_html/not_parsed.html +24 -0
- data/test/testcases/block/09_html/not_parsed.text +24 -0
- data/test/testcases/block/09_html/parse_as_raw.html +35 -0
- data/test/testcases/block/09_html/parse_as_raw.htmlinput +34 -0
- data/test/testcases/block/09_html/parse_as_raw.options +1 -0
- data/test/testcases/block/09_html/parse_as_raw.text +33 -0
- data/test/testcases/block/09_html/parse_as_span.html +12 -0
- data/test/testcases/block/09_html/parse_as_span.htmlinput +12 -0
- data/test/testcases/block/09_html/parse_as_span.options +1 -0
- data/test/testcases/block/09_html/parse_as_span.text +9 -0
- data/test/testcases/block/09_html/parse_block_html.html +21 -0
- data/test/testcases/block/09_html/parse_block_html.options +1 -0
- data/test/testcases/block/09_html/parse_block_html.text +17 -0
- data/test/testcases/block/09_html/processing_instruction.html +13 -0
- data/test/testcases/block/09_html/processing_instruction.text +12 -0
- data/test/testcases/block/09_html/simple.html +64 -0
- data/test/testcases/block/09_html/simple.html.19 +64 -0
- data/test/testcases/block/09_html/simple.options +1 -0
- data/test/testcases/block/09_html/simple.text +59 -0
- data/test/testcases/block/10_ald/simple.html +2 -0
- data/test/testcases/block/10_ald/simple.text +8 -0
- data/test/testcases/block/11_ial/auto_id_and_ial.html +1 -0
- data/test/testcases/block/11_ial/auto_id_and_ial.options +1 -0
- data/test/testcases/block/11_ial/auto_id_and_ial.text +2 -0
- data/test/testcases/block/11_ial/nested.html +11 -0
- data/test/testcases/block/11_ial/nested.text +15 -0
- data/test/testcases/block/11_ial/simple.html +25 -0
- data/test/testcases/block/11_ial/simple.text +34 -0
- data/test/testcases/block/12_extension/comment.html +8 -0
- data/test/testcases/block/12_extension/comment.text +12 -0
- data/test/testcases/block/12_extension/ignored.html +8 -0
- data/test/testcases/block/12_extension/ignored.text +8 -0
- data/test/testcases/block/12_extension/nomarkdown.html +10 -0
- data/test/testcases/block/12_extension/nomarkdown.kramdown +20 -0
- data/test/testcases/block/12_extension/nomarkdown.latex +13 -0
- data/test/testcases/block/12_extension/nomarkdown.text +21 -0
- data/test/testcases/block/12_extension/options.html +21 -0
- data/test/testcases/block/12_extension/options.text +21 -0
- data/test/testcases/block/12_extension/options2.html +10 -0
- data/test/testcases/block/12_extension/options2.text +5 -0
- data/test/testcases/block/12_extension/options3.html +7 -0
- data/test/testcases/block/12_extension/options3.text +7 -0
- data/test/testcases/block/13_definition_list/definition_at_beginning.html +1 -0
- data/test/testcases/block/13_definition_list/definition_at_beginning.text +1 -0
- data/test/testcases/block/13_definition_list/item_ial.html +12 -0
- data/test/testcases/block/13_definition_list/item_ial.text +8 -0
- data/test/testcases/block/13_definition_list/multiple_terms.html +13 -0
- data/test/testcases/block/13_definition_list/multiple_terms.text +10 -0
- data/test/testcases/block/13_definition_list/no_def_list.html +2 -0
- data/test/testcases/block/13_definition_list/no_def_list.text +2 -0
- data/test/testcases/block/13_definition_list/para_wrapping.html +10 -0
- data/test/testcases/block/13_definition_list/para_wrapping.text +6 -0
- data/test/testcases/block/13_definition_list/separated_by_eob.html +8 -0
- data/test/testcases/block/13_definition_list/separated_by_eob.text +5 -0
- data/test/testcases/block/13_definition_list/simple.html +8 -0
- data/test/testcases/block/13_definition_list/simple.text +7 -0
- data/test/testcases/block/13_definition_list/styled_terms.html +4 -0
- data/test/testcases/block/13_definition_list/styled_terms.text +2 -0
- data/test/testcases/block/13_definition_list/too_much_space.html +3 -0
- data/test/testcases/block/13_definition_list/too_much_space.text +4 -0
- data/test/testcases/block/13_definition_list/with_blocks.html +38 -0
- data/test/testcases/block/13_definition_list/with_blocks.text +24 -0
- data/test/testcases/block/14_table/errors.html +8 -0
- data/test/testcases/block/14_table/errors.text +9 -0
- data/test/testcases/block/14_table/escaping.html +52 -0
- data/test/testcases/block/14_table/escaping.text +19 -0
- data/test/testcases/block/14_table/footer.html +65 -0
- data/test/testcases/block/14_table/footer.text +25 -0
- data/test/testcases/block/14_table/header.html +96 -0
- data/test/testcases/block/14_table/header.text +32 -0
- data/test/testcases/block/14_table/no_table.html +3 -0
- data/test/testcases/block/14_table/no_table.text +3 -0
- data/test/testcases/block/14_table/simple.html +177 -0
- data/test/testcases/block/14_table/simple.html.19 +177 -0
- data/test/testcases/block/14_table/simple.text +49 -0
- data/test/testcases/block/14_table/table_with_footnote.html +25 -0
- data/test/testcases/block/14_table/table_with_footnote.latex +11 -0
- data/test/testcases/block/14_table/table_with_footnote.text +6 -0
- data/test/testcases/block/15_math/normal.html +26 -0
- data/test/testcases/block/15_math/normal.text +28 -0
- data/test/testcases/block/16_toc/no_toc.html +33 -0
- data/test/testcases/block/16_toc/no_toc.options +1 -0
- data/test/testcases/block/16_toc/no_toc.text +16 -0
- data/test/testcases/block/16_toc/toc_levels.html +24 -0
- data/test/testcases/block/16_toc/toc_levels.options +1 -0
- data/test/testcases/block/16_toc/toc_levels.text +16 -0
- data/test/testcases/block/17_github_codeblock/backtick_syntax.html +7 -0
- data/test/testcases/block/17_github_codeblock/backtick_syntax.text +9 -0
- data/test/testcases/block/17_github_codeblock/error.html +4 -0
- data/test/testcases/block/17_github_codeblock/error.text +4 -0
- data/test/testcases/block/17_github_codeblock/no_newline_at_end.html +2 -0
- data/test/testcases/block/17_github_codeblock/no_newline_at_end.text +3 -0
- data/test/testcases/encoding.html +46 -0
- data/test/testcases/encoding.text +28 -0
- data/test/testcases/span/01_link/empty.html +5 -0
- data/test/testcases/span/01_link/empty.text +5 -0
- data/test/testcases/span/01_link/image_in_a.html +5 -0
- data/test/testcases/span/01_link/image_in_a.text +5 -0
- data/test/testcases/span/01_link/imagelinks.html +14 -0
- data/test/testcases/span/01_link/imagelinks.text +16 -0
- data/test/testcases/span/01_link/inline.html +46 -0
- data/test/testcases/span/01_link/inline.html.19 +46 -0
- data/test/testcases/span/01_link/inline.text +48 -0
- data/test/testcases/span/01_link/link_defs.html +9 -0
- data/test/testcases/span/01_link/link_defs.text +26 -0
- data/test/testcases/span/01_link/links_with_angle_brackets.html +3 -0
- data/test/testcases/span/01_link/links_with_angle_brackets.text +3 -0
- data/test/testcases/span/01_link/reference.html +36 -0
- data/test/testcases/span/01_link/reference.html.19 +36 -0
- data/test/testcases/span/01_link/reference.text +50 -0
- data/test/testcases/span/02_emphasis/empty.html +3 -0
- data/test/testcases/span/02_emphasis/empty.text +3 -0
- data/test/testcases/span/02_emphasis/errors.html +9 -0
- data/test/testcases/span/02_emphasis/errors.text +9 -0
- data/test/testcases/span/02_emphasis/nesting.html +38 -0
- data/test/testcases/span/02_emphasis/nesting.text +33 -0
- data/test/testcases/span/02_emphasis/normal.html +46 -0
- data/test/testcases/span/02_emphasis/normal.text +46 -0
- data/test/testcases/span/03_codespan/empty.html +5 -0
- data/test/testcases/span/03_codespan/empty.text +5 -0
- data/test/testcases/span/03_codespan/errors.html +1 -0
- data/test/testcases/span/03_codespan/errors.text +1 -0
- data/test/testcases/span/03_codespan/highlighting.html +1 -0
- data/test/testcases/span/03_codespan/highlighting.text +1 -0
- data/test/testcases/span/03_codespan/normal.html +16 -0
- data/test/testcases/span/03_codespan/normal.text +16 -0
- data/test/testcases/span/04_footnote/definitions.html +17 -0
- data/test/testcases/span/04_footnote/definitions.latex +17 -0
- data/test/testcases/span/04_footnote/definitions.text +24 -0
- data/test/testcases/span/04_footnote/footnote_nr.html +12 -0
- data/test/testcases/span/04_footnote/footnote_nr.latex +2 -0
- data/test/testcases/span/04_footnote/footnote_nr.options +1 -0
- data/test/testcases/span/04_footnote/footnote_nr.text +4 -0
- data/test/testcases/span/04_footnote/markers.html +46 -0
- data/test/testcases/span/04_footnote/markers.latex +23 -0
- data/test/testcases/span/04_footnote/markers.text +26 -0
- data/test/testcases/span/05_html/across_lines.html +1 -0
- data/test/testcases/span/05_html/across_lines.text +2 -0
- data/test/testcases/span/05_html/invalid.html +1 -0
- data/test/testcases/span/05_html/invalid.text +1 -0
- data/test/testcases/span/05_html/link_with_mailto.html +1 -0
- data/test/testcases/span/05_html/link_with_mailto.text +1 -0
- data/test/testcases/span/05_html/markdown_attr.html +6 -0
- data/test/testcases/span/05_html/markdown_attr.text +6 -0
- data/test/testcases/span/05_html/normal.html +34 -0
- data/test/testcases/span/05_html/normal.text +34 -0
- data/test/testcases/span/abbreviations/abbrev.html +8 -0
- data/test/testcases/span/abbreviations/abbrev.text +15 -0
- data/test/testcases/span/abbreviations/abbrev_defs.html +2 -0
- data/test/testcases/span/abbreviations/abbrev_defs.text +5 -0
- data/test/testcases/span/autolinks/url_links.html +12 -0
- data/test/testcases/span/autolinks/url_links.text +12 -0
- data/test/testcases/span/escaped_chars/normal.html +47 -0
- data/test/testcases/span/escaped_chars/normal.text +47 -0
- data/test/testcases/span/extension/comment.html +6 -0
- data/test/testcases/span/extension/comment.text +6 -0
- data/test/testcases/span/extension/ignored.html +1 -0
- data/test/testcases/span/extension/ignored.text +1 -0
- data/test/testcases/span/extension/nomarkdown.html +1 -0
- data/test/testcases/span/extension/nomarkdown.text +1 -0
- data/test/testcases/span/extension/options.html +1 -0
- data/test/testcases/span/extension/options.text +1 -0
- data/test/testcases/span/ial/simple.html +6 -0
- data/test/testcases/span/ial/simple.text +6 -0
- data/test/testcases/span/line_breaks/normal.html +11 -0
- data/test/testcases/span/line_breaks/normal.latex +12 -0
- data/test/testcases/span/line_breaks/normal.text +11 -0
- data/test/testcases/span/math/normal.html +5 -0
- data/test/testcases/span/math/normal.text +5 -0
- data/test/testcases/span/text_substitutions/entities.html +6 -0
- data/test/testcases/span/text_substitutions/entities.options +1 -0
- data/test/testcases/span/text_substitutions/entities.text +6 -0
- data/test/testcases/span/text_substitutions/entities_as_char.html +1 -0
- data/test/testcases/span/text_substitutions/entities_as_char.html.19 +1 -0
- data/test/testcases/span/text_substitutions/entities_as_char.options +1 -0
- data/test/testcases/span/text_substitutions/entities_as_char.text +1 -0
- data/test/testcases/span/text_substitutions/entities_as_input.html +1 -0
- data/test/testcases/span/text_substitutions/entities_as_input.options +1 -0
- data/test/testcases/span/text_substitutions/entities_as_input.text +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.html +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.options +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.text +1 -0
- data/test/testcases/span/text_substitutions/entities_symbolic.html +1 -0
- data/test/testcases/span/text_substitutions/entities_symbolic.options +1 -0
- data/test/testcases/span/text_substitutions/entities_symbolic.text +1 -0
- data/test/testcases/span/text_substitutions/greaterthan.html +1 -0
- data/test/testcases/span/text_substitutions/greaterthan.text +1 -0
- data/test/testcases/span/text_substitutions/lowerthan.html +1 -0
- data/test/testcases/span/text_substitutions/lowerthan.text +1 -0
- data/test/testcases/span/text_substitutions/typography.html +18 -0
- data/test/testcases/span/text_substitutions/typography.html.19 +18 -0
- data/test/testcases/span/text_substitutions/typography.text +18 -0
- metadata +817 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
\\
|
2
|
+
|
3
|
+
\.
|
4
|
+
|
5
|
+
\*
|
6
|
+
|
7
|
+
\_
|
8
|
+
|
9
|
+
\+
|
10
|
+
|
11
|
+
\-
|
12
|
+
|
13
|
+
\`
|
14
|
+
|
15
|
+
\(
|
16
|
+
|
17
|
+
\)
|
18
|
+
|
19
|
+
\[
|
20
|
+
|
21
|
+
\]
|
22
|
+
|
23
|
+
\{
|
24
|
+
|
25
|
+
\}
|
26
|
+
|
27
|
+
\#
|
28
|
+
|
29
|
+
\!
|
30
|
+
|
31
|
+
\<<
|
32
|
+
|
33
|
+
\>>
|
34
|
+
|
35
|
+
\:
|
36
|
+
|
37
|
+
\|
|
38
|
+
|
39
|
+
\"
|
40
|
+
|
41
|
+
\'
|
42
|
+
|
43
|
+
\=
|
44
|
+
|
45
|
+
\>
|
46
|
+
|
47
|
+
\<
|
@@ -0,0 +1,6 @@
|
|
1
|
+
This is a {::comment}simple{:/} paragraph.
|
2
|
+
This is a {::comment}simple{:/comment} paragraph.
|
3
|
+
This is a {::comment}simple {:/other} paragraph{:/comment}.
|
4
|
+
This is a {::comment/} paragraph.
|
5
|
+
This is a {:/comment} simple {:/} paragraph.
|
6
|
+
This is a {::comment} paragraph.
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is {::something}paragraph{:/}</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
This is {::something}paragraph{:/}
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is *some* text.</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
This is {::nomarkdown}*some*{:/} text.
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is an option <span>*true*</span>!</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
This is an {::options parse_span_html="false" /} option <span>*true*</span>!
|
@@ -0,0 +1 @@
|
|
1
|
+
:entity_output: :as_input
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is the A&O. © 2008 by me ŗ and λ</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is the A&O. © 2008 by me ŗ and λ</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
:entity_output: :as_char
|
@@ -0,0 +1 @@
|
|
1
|
+
This is the A&O. © 2008 by me ŗ and λ
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is the A&O. © 2008 by me ŗ and λ</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
:entity_output: :as_input
|
@@ -0,0 +1 @@
|
|
1
|
+
This is the A&O. © 2008 by me ŗ and λ
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is the A&O. © 2008 by me ŗ and λ</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
:entity_output: :numeric
|
@@ -0,0 +1 @@
|
|
1
|
+
This is the A&O. © 2008 by me ŗ and λ
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>This is the A&O. © 2008 by me ŗ and λ</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
:entity_output: :symbolic
|
@@ -0,0 +1 @@
|
|
1
|
+
This is the A&O. © 2008 by me ŗ and λ
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>2 > 1 > 0</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
2 > 1 > 0
|
@@ -0,0 +1 @@
|
|
1
|
+
<p>0 < 1 < 2</p>
|
@@ -0,0 +1 @@
|
|
1
|
+
0 < 1 < 2
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<p>This is… something—this too–!</p>
|
2
|
+
|
3
|
+
<p>This «is» some text, « this » too!</p>
|
4
|
+
|
5
|
+
<p>“Fancy quotes” are ‘cool’, even in the ’80s!
|
6
|
+
Je t’ aime. You’re a funny one! Thomas’ name
|
7
|
+
Mark’s name. “…you”
|
8
|
+
“‘Nested’ quotes are ‘possible’”, too!
|
9
|
+
‘“Otherway” is “round”’!</p>
|
10
|
+
|
11
|
+
<p>‘Opening now!’</p>
|
12
|
+
|
13
|
+
<p>’80s are really cool.</p>
|
14
|
+
|
15
|
+
<p><em>Cluster</em>’s Last Stand.</p>
|
16
|
+
|
17
|
+
<p>Nam liber tempor
|
18
|
+
“…At vero eos et accusam”</p>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<p>This is… something—this too–!</p>
|
2
|
+
|
3
|
+
<p>This «is» some text, « this » too!</p>
|
4
|
+
|
5
|
+
<p>“Fancy quotes” are ‘cool’, even in the ’80s!
|
6
|
+
Je t’ aime. You’re a funny one! Thomas’ name
|
7
|
+
Mark’s name. “…you”
|
8
|
+
“‘Nested’ quotes are ‘possible’”, too!
|
9
|
+
‘“Otherway” is “round”’!</p>
|
10
|
+
|
11
|
+
<p>‘Opening now!’</p>
|
12
|
+
|
13
|
+
<p>’80s are really cool.</p>
|
14
|
+
|
15
|
+
<p><em>Cluster</em>’s Last Stand.</p>
|
16
|
+
|
17
|
+
<p>Nam liber tempor
|
18
|
+
“…At vero eos et accusam”</p>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
This is... something---this too--!
|
2
|
+
|
3
|
+
This <<is>> some text, << this >> too!
|
4
|
+
|
5
|
+
"Fancy quotes" are 'cool', even in the '80s!
|
6
|
+
Je t' aime. You're a funny one! Thomas' name
|
7
|
+
Mark's name. "...you"
|
8
|
+
"'Nested' quotes are 'possible'", too!
|
9
|
+
'"Otherway" is "round"'!
|
10
|
+
|
11
|
+
'Opening now!'
|
12
|
+
|
13
|
+
'80s are really cool.
|
14
|
+
|
15
|
+
<em>Cluster</em>'s Last Stand.
|
16
|
+
|
17
|
+
Nam liber tempor
|
18
|
+
"...At vero eos et accusam"
|
metadata
ADDED
@@ -0,0 +1,817 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gitdown
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Thomas Leitner
|
14
|
+
- Matt Parker
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2012-01-16 00:00:00 Z
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: Use 'GithubMarkdown' as your input format to capture github-flavored markdown code blocks.
|
23
|
+
email: moonmaster9000@gmail.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- bin/kramdown
|
32
|
+
- benchmark/benchmark.rb
|
33
|
+
- benchmark/benchmark.sh
|
34
|
+
- benchmark/generate_data.rb
|
35
|
+
- benchmark/mdbasics.text
|
36
|
+
- benchmark/mdsyntax.text
|
37
|
+
- benchmark/testing.sh
|
38
|
+
- benchmark/timing.sh
|
39
|
+
- lib/kramdown/compatibility.rb
|
40
|
+
- lib/kramdown/converter/base.rb
|
41
|
+
- lib/kramdown/converter/html.rb
|
42
|
+
- lib/kramdown/converter/kramdown.rb
|
43
|
+
- lib/kramdown/converter/latex.rb
|
44
|
+
- lib/kramdown/converter/toc.rb
|
45
|
+
- lib/kramdown/converter.rb
|
46
|
+
- lib/kramdown/document.rb
|
47
|
+
- lib/kramdown/element.rb
|
48
|
+
- lib/kramdown/error.rb
|
49
|
+
- lib/kramdown/options.rb
|
50
|
+
- lib/kramdown/parser/base.rb
|
51
|
+
- lib/kramdown/parser/github_markdown/github_codeblock.rb
|
52
|
+
- lib/kramdown/parser/github_markdown.rb
|
53
|
+
- lib/kramdown/parser/html.rb
|
54
|
+
- lib/kramdown/parser/kramdown/abbreviation.rb
|
55
|
+
- lib/kramdown/parser/kramdown/autolink.rb
|
56
|
+
- lib/kramdown/parser/kramdown/blank_line.rb
|
57
|
+
- lib/kramdown/parser/kramdown/block_boundary.rb
|
58
|
+
- lib/kramdown/parser/kramdown/blockquote.rb
|
59
|
+
- lib/kramdown/parser/kramdown/codeblock.rb
|
60
|
+
- lib/kramdown/parser/kramdown/codespan.rb
|
61
|
+
- lib/kramdown/parser/kramdown/emphasis.rb
|
62
|
+
- lib/kramdown/parser/kramdown/eob.rb
|
63
|
+
- lib/kramdown/parser/kramdown/escaped_chars.rb
|
64
|
+
- lib/kramdown/parser/kramdown/extensions.rb
|
65
|
+
- lib/kramdown/parser/kramdown/footnote.rb
|
66
|
+
- lib/kramdown/parser/kramdown/header.rb
|
67
|
+
- lib/kramdown/parser/kramdown/horizontal_rule.rb
|
68
|
+
- lib/kramdown/parser/kramdown/html.rb
|
69
|
+
- lib/kramdown/parser/kramdown/html_entity.rb
|
70
|
+
- lib/kramdown/parser/kramdown/line_break.rb
|
71
|
+
- lib/kramdown/parser/kramdown/link.rb
|
72
|
+
- lib/kramdown/parser/kramdown/list.rb
|
73
|
+
- lib/kramdown/parser/kramdown/math.rb
|
74
|
+
- lib/kramdown/parser/kramdown/paragraph.rb
|
75
|
+
- lib/kramdown/parser/kramdown/smart_quotes.rb
|
76
|
+
- lib/kramdown/parser/kramdown/table.rb
|
77
|
+
- lib/kramdown/parser/kramdown/typographic_symbol.rb
|
78
|
+
- lib/kramdown/parser/kramdown.rb
|
79
|
+
- lib/kramdown/parser/markdown.rb
|
80
|
+
- lib/kramdown/parser.rb
|
81
|
+
- lib/kramdown/utils/entities.rb
|
82
|
+
- lib/kramdown/utils/html.rb
|
83
|
+
- lib/kramdown/utils/ordered_hash.rb
|
84
|
+
- lib/kramdown/utils.rb
|
85
|
+
- lib/kramdown/version.rb
|
86
|
+
- lib/kramdown.rb
|
87
|
+
- data/kramdown/document.html
|
88
|
+
- data/kramdown/document.latex
|
89
|
+
- doc/default.scss.css
|
90
|
+
- doc/default.template
|
91
|
+
- doc/documentation.page
|
92
|
+
- doc/index.page
|
93
|
+
- doc/installation.page
|
94
|
+
- doc/links.markdown
|
95
|
+
- doc/news.feed
|
96
|
+
- doc/news.page
|
97
|
+
- doc/quickref.page
|
98
|
+
- doc/syntax.page
|
99
|
+
- doc/tests.page
|
100
|
+
- doc/virtual
|
101
|
+
- Rakefile
|
102
|
+
- setup.rb
|
103
|
+
- COPYING
|
104
|
+
- GPL
|
105
|
+
- README
|
106
|
+
- AUTHORS
|
107
|
+
- VERSION
|
108
|
+
- test/run_tests.rb
|
109
|
+
- test/test_files.rb
|
110
|
+
- test/testcases/block/01_blank_line/spaces.html
|
111
|
+
- test/testcases/block/01_blank_line/spaces.text
|
112
|
+
- test/testcases/block/01_blank_line/tabs.html
|
113
|
+
- test/testcases/block/01_blank_line/tabs.text
|
114
|
+
- test/testcases/block/02_eob/beginning.html
|
115
|
+
- test/testcases/block/02_eob/beginning.text
|
116
|
+
- test/testcases/block/02_eob/end.html
|
117
|
+
- test/testcases/block/02_eob/end.text
|
118
|
+
- test/testcases/block/02_eob/middle.html
|
119
|
+
- test/testcases/block/02_eob/middle.text
|
120
|
+
- test/testcases/block/03_paragraph/indented.html
|
121
|
+
- test/testcases/block/03_paragraph/indented.text
|
122
|
+
- test/testcases/block/03_paragraph/no_newline_at_end.html
|
123
|
+
- test/testcases/block/03_paragraph/no_newline_at_end.text
|
124
|
+
- test/testcases/block/03_paragraph/one_para.html
|
125
|
+
- test/testcases/block/03_paragraph/one_para.text
|
126
|
+
- test/testcases/block/03_paragraph/two_para.html
|
127
|
+
- test/testcases/block/03_paragraph/two_para.text
|
128
|
+
- test/testcases/block/04_header/atx_header.html
|
129
|
+
- test/testcases/block/04_header/atx_header.text
|
130
|
+
- test/testcases/block/04_header/atx_header_no_newline_at_end.html
|
131
|
+
- test/testcases/block/04_header/atx_header_no_newline_at_end.text
|
132
|
+
- test/testcases/block/04_header/setext_header.html
|
133
|
+
- test/testcases/block/04_header/setext_header.html.19
|
134
|
+
- test/testcases/block/04_header/setext_header.text
|
135
|
+
- test/testcases/block/04_header/setext_header_no_newline_at_end.html
|
136
|
+
- test/testcases/block/04_header/setext_header_no_newline_at_end.text
|
137
|
+
- test/testcases/block/04_header/with_auto_id_prefix.html
|
138
|
+
- test/testcases/block/04_header/with_auto_id_prefix.options
|
139
|
+
- test/testcases/block/04_header/with_auto_id_prefix.text
|
140
|
+
- test/testcases/block/04_header/with_auto_ids.html
|
141
|
+
- test/testcases/block/04_header/with_auto_ids.options
|
142
|
+
- test/testcases/block/04_header/with_auto_ids.text
|
143
|
+
- test/testcases/block/05_blockquote/indented.html
|
144
|
+
- test/testcases/block/05_blockquote/indented.text
|
145
|
+
- test/testcases/block/05_blockquote/lazy.html
|
146
|
+
- test/testcases/block/05_blockquote/lazy.text
|
147
|
+
- test/testcases/block/05_blockquote/nested.html
|
148
|
+
- test/testcases/block/05_blockquote/nested.text
|
149
|
+
- test/testcases/block/05_blockquote/no_newline_at_end.html
|
150
|
+
- test/testcases/block/05_blockquote/no_newline_at_end.text
|
151
|
+
- test/testcases/block/05_blockquote/very_long_line.html
|
152
|
+
- test/testcases/block/05_blockquote/very_long_line.text
|
153
|
+
- test/testcases/block/05_blockquote/with_code_blocks.html
|
154
|
+
- test/testcases/block/05_blockquote/with_code_blocks.text
|
155
|
+
- test/testcases/block/06_codeblock/error.html
|
156
|
+
- test/testcases/block/06_codeblock/error.text
|
157
|
+
- test/testcases/block/06_codeblock/lazy.html
|
158
|
+
- test/testcases/block/06_codeblock/lazy.text
|
159
|
+
- test/testcases/block/06_codeblock/no_newline_at_end.html
|
160
|
+
- test/testcases/block/06_codeblock/no_newline_at_end.text
|
161
|
+
- test/testcases/block/06_codeblock/no_newline_at_end_1.html
|
162
|
+
- test/testcases/block/06_codeblock/no_newline_at_end_1.text
|
163
|
+
- test/testcases/block/06_codeblock/normal.html
|
164
|
+
- test/testcases/block/06_codeblock/normal.text
|
165
|
+
- test/testcases/block/06_codeblock/tilde_syntax.html
|
166
|
+
- test/testcases/block/06_codeblock/tilde_syntax.text
|
167
|
+
- test/testcases/block/06_codeblock/whitespace.html
|
168
|
+
- test/testcases/block/06_codeblock/whitespace.text
|
169
|
+
- test/testcases/block/06_codeblock/with_blank_line.html
|
170
|
+
- test/testcases/block/06_codeblock/with_blank_line.text
|
171
|
+
- test/testcases/block/06_codeblock/with_eob_marker.html
|
172
|
+
- test/testcases/block/06_codeblock/with_eob_marker.text
|
173
|
+
- test/testcases/block/06_codeblock/with_ial.html
|
174
|
+
- test/testcases/block/06_codeblock/with_ial.text
|
175
|
+
- test/testcases/block/07_horizontal_rule/error.html
|
176
|
+
- test/testcases/block/07_horizontal_rule/error.html.19
|
177
|
+
- test/testcases/block/07_horizontal_rule/error.text
|
178
|
+
- test/testcases/block/07_horizontal_rule/normal.html
|
179
|
+
- test/testcases/block/07_horizontal_rule/normal.text
|
180
|
+
- test/testcases/block/07_horizontal_rule/sepspaces.html
|
181
|
+
- test/testcases/block/07_horizontal_rule/sepspaces.text
|
182
|
+
- test/testcases/block/07_horizontal_rule/septabs.html
|
183
|
+
- test/testcases/block/07_horizontal_rule/septabs.text
|
184
|
+
- test/testcases/block/08_list/escaping.html
|
185
|
+
- test/testcases/block/08_list/escaping.text
|
186
|
+
- test/testcases/block/08_list/item_ial.html
|
187
|
+
- test/testcases/block/08_list/item_ial.text
|
188
|
+
- test/testcases/block/08_list/lazy.html
|
189
|
+
- test/testcases/block/08_list/lazy.text
|
190
|
+
- test/testcases/block/08_list/list_and_hr.html
|
191
|
+
- test/testcases/block/08_list/list_and_hr.text
|
192
|
+
- test/testcases/block/08_list/list_and_others.html
|
193
|
+
- test/testcases/block/08_list/list_and_others.text
|
194
|
+
- test/testcases/block/08_list/mixed.html
|
195
|
+
- test/testcases/block/08_list/mixed.text
|
196
|
+
- test/testcases/block/08_list/nested.html
|
197
|
+
- test/testcases/block/08_list/nested.text
|
198
|
+
- test/testcases/block/08_list/other_first_element.html
|
199
|
+
- test/testcases/block/08_list/other_first_element.text
|
200
|
+
- test/testcases/block/08_list/simple_ol.html
|
201
|
+
- test/testcases/block/08_list/simple_ol.text
|
202
|
+
- test/testcases/block/08_list/simple_ul.html
|
203
|
+
- test/testcases/block/08_list/simple_ul.text
|
204
|
+
- test/testcases/block/08_list/single_item.html
|
205
|
+
- test/testcases/block/08_list/single_item.text
|
206
|
+
- test/testcases/block/08_list/special_cases.html
|
207
|
+
- test/testcases/block/08_list/special_cases.text
|
208
|
+
- test/testcases/block/09_html/comment.html
|
209
|
+
- test/testcases/block/09_html/comment.text
|
210
|
+
- test/testcases/block/09_html/content_model/deflists.html
|
211
|
+
- test/testcases/block/09_html/content_model/deflists.options
|
212
|
+
- test/testcases/block/09_html/content_model/deflists.text
|
213
|
+
- test/testcases/block/09_html/content_model/tables.html
|
214
|
+
- test/testcases/block/09_html/content_model/tables.options
|
215
|
+
- test/testcases/block/09_html/content_model/tables.text
|
216
|
+
- test/testcases/block/09_html/html_and_codeblocks.html
|
217
|
+
- test/testcases/block/09_html/html_and_codeblocks.options
|
218
|
+
- test/testcases/block/09_html/html_and_codeblocks.text
|
219
|
+
- test/testcases/block/09_html/html_and_headers.html
|
220
|
+
- test/testcases/block/09_html/html_and_headers.text
|
221
|
+
- test/testcases/block/09_html/html_to_native/code.html
|
222
|
+
- test/testcases/block/09_html/html_to_native/code.text
|
223
|
+
- test/testcases/block/09_html/html_to_native/comment.html
|
224
|
+
- test/testcases/block/09_html/html_to_native/comment.text
|
225
|
+
- test/testcases/block/09_html/html_to_native/emphasis.html
|
226
|
+
- test/testcases/block/09_html/html_to_native/emphasis.text
|
227
|
+
- test/testcases/block/09_html/html_to_native/entity.html
|
228
|
+
- test/testcases/block/09_html/html_to_native/entity.text
|
229
|
+
- test/testcases/block/09_html/html_to_native/header.html
|
230
|
+
- test/testcases/block/09_html/html_to_native/header.options
|
231
|
+
- test/testcases/block/09_html/html_to_native/header.text
|
232
|
+
- test/testcases/block/09_html/html_to_native/list_dl.html
|
233
|
+
- test/testcases/block/09_html/html_to_native/list_dl.text
|
234
|
+
- test/testcases/block/09_html/html_to_native/list_ol.html
|
235
|
+
- test/testcases/block/09_html/html_to_native/list_ol.text
|
236
|
+
- test/testcases/block/09_html/html_to_native/list_ul.html
|
237
|
+
- test/testcases/block/09_html/html_to_native/list_ul.text
|
238
|
+
- test/testcases/block/09_html/html_to_native/options
|
239
|
+
- test/testcases/block/09_html/html_to_native/paragraph.html
|
240
|
+
- test/testcases/block/09_html/html_to_native/paragraph.text
|
241
|
+
- test/testcases/block/09_html/html_to_native/table_normal.html
|
242
|
+
- test/testcases/block/09_html/html_to_native/table_normal.text
|
243
|
+
- test/testcases/block/09_html/html_to_native/table_simple.html
|
244
|
+
- test/testcases/block/09_html/html_to_native/table_simple.text
|
245
|
+
- test/testcases/block/09_html/html_to_native/typography.html
|
246
|
+
- test/testcases/block/09_html/html_to_native/typography.html.19
|
247
|
+
- test/testcases/block/09_html/html_to_native/typography.text
|
248
|
+
- test/testcases/block/09_html/invalid_html_1.html
|
249
|
+
- test/testcases/block/09_html/invalid_html_1.text
|
250
|
+
- test/testcases/block/09_html/invalid_html_2.html
|
251
|
+
- test/testcases/block/09_html/invalid_html_2.text
|
252
|
+
- test/testcases/block/09_html/markdown_attr.html
|
253
|
+
- test/testcases/block/09_html/markdown_attr.text
|
254
|
+
- test/testcases/block/09_html/not_parsed.html
|
255
|
+
- test/testcases/block/09_html/not_parsed.text
|
256
|
+
- test/testcases/block/09_html/parse_as_raw.html
|
257
|
+
- test/testcases/block/09_html/parse_as_raw.htmlinput
|
258
|
+
- test/testcases/block/09_html/parse_as_raw.options
|
259
|
+
- test/testcases/block/09_html/parse_as_raw.text
|
260
|
+
- test/testcases/block/09_html/parse_as_span.html
|
261
|
+
- test/testcases/block/09_html/parse_as_span.htmlinput
|
262
|
+
- test/testcases/block/09_html/parse_as_span.options
|
263
|
+
- test/testcases/block/09_html/parse_as_span.text
|
264
|
+
- test/testcases/block/09_html/parse_block_html.html
|
265
|
+
- test/testcases/block/09_html/parse_block_html.options
|
266
|
+
- test/testcases/block/09_html/parse_block_html.text
|
267
|
+
- test/testcases/block/09_html/processing_instruction.html
|
268
|
+
- test/testcases/block/09_html/processing_instruction.text
|
269
|
+
- test/testcases/block/09_html/simple.html
|
270
|
+
- test/testcases/block/09_html/simple.html.19
|
271
|
+
- test/testcases/block/09_html/simple.options
|
272
|
+
- test/testcases/block/09_html/simple.text
|
273
|
+
- test/testcases/block/10_ald/simple.html
|
274
|
+
- test/testcases/block/10_ald/simple.text
|
275
|
+
- test/testcases/block/11_ial/auto_id_and_ial.html
|
276
|
+
- test/testcases/block/11_ial/auto_id_and_ial.options
|
277
|
+
- test/testcases/block/11_ial/auto_id_and_ial.text
|
278
|
+
- test/testcases/block/11_ial/nested.html
|
279
|
+
- test/testcases/block/11_ial/nested.text
|
280
|
+
- test/testcases/block/11_ial/simple.html
|
281
|
+
- test/testcases/block/11_ial/simple.text
|
282
|
+
- test/testcases/block/12_extension/comment.html
|
283
|
+
- test/testcases/block/12_extension/comment.text
|
284
|
+
- test/testcases/block/12_extension/ignored.html
|
285
|
+
- test/testcases/block/12_extension/ignored.text
|
286
|
+
- test/testcases/block/12_extension/nomarkdown.html
|
287
|
+
- test/testcases/block/12_extension/nomarkdown.kramdown
|
288
|
+
- test/testcases/block/12_extension/nomarkdown.latex
|
289
|
+
- test/testcases/block/12_extension/nomarkdown.text
|
290
|
+
- test/testcases/block/12_extension/options.html
|
291
|
+
- test/testcases/block/12_extension/options.text
|
292
|
+
- test/testcases/block/12_extension/options2.html
|
293
|
+
- test/testcases/block/12_extension/options2.text
|
294
|
+
- test/testcases/block/12_extension/options3.html
|
295
|
+
- test/testcases/block/12_extension/options3.text
|
296
|
+
- test/testcases/block/13_definition_list/definition_at_beginning.html
|
297
|
+
- test/testcases/block/13_definition_list/definition_at_beginning.text
|
298
|
+
- test/testcases/block/13_definition_list/item_ial.html
|
299
|
+
- test/testcases/block/13_definition_list/item_ial.text
|
300
|
+
- test/testcases/block/13_definition_list/multiple_terms.html
|
301
|
+
- test/testcases/block/13_definition_list/multiple_terms.text
|
302
|
+
- test/testcases/block/13_definition_list/no_def_list.html
|
303
|
+
- test/testcases/block/13_definition_list/no_def_list.text
|
304
|
+
- test/testcases/block/13_definition_list/para_wrapping.html
|
305
|
+
- test/testcases/block/13_definition_list/para_wrapping.text
|
306
|
+
- test/testcases/block/13_definition_list/separated_by_eob.html
|
307
|
+
- test/testcases/block/13_definition_list/separated_by_eob.text
|
308
|
+
- test/testcases/block/13_definition_list/simple.html
|
309
|
+
- test/testcases/block/13_definition_list/simple.text
|
310
|
+
- test/testcases/block/13_definition_list/styled_terms.html
|
311
|
+
- test/testcases/block/13_definition_list/styled_terms.text
|
312
|
+
- test/testcases/block/13_definition_list/too_much_space.html
|
313
|
+
- test/testcases/block/13_definition_list/too_much_space.text
|
314
|
+
- test/testcases/block/13_definition_list/with_blocks.html
|
315
|
+
- test/testcases/block/13_definition_list/with_blocks.text
|
316
|
+
- test/testcases/block/14_table/errors.html
|
317
|
+
- test/testcases/block/14_table/errors.text
|
318
|
+
- test/testcases/block/14_table/escaping.html
|
319
|
+
- test/testcases/block/14_table/escaping.text
|
320
|
+
- test/testcases/block/14_table/footer.html
|
321
|
+
- test/testcases/block/14_table/footer.text
|
322
|
+
- test/testcases/block/14_table/header.html
|
323
|
+
- test/testcases/block/14_table/header.text
|
324
|
+
- test/testcases/block/14_table/no_table.html
|
325
|
+
- test/testcases/block/14_table/no_table.text
|
326
|
+
- test/testcases/block/14_table/simple.html
|
327
|
+
- test/testcases/block/14_table/simple.html.19
|
328
|
+
- test/testcases/block/14_table/simple.text
|
329
|
+
- test/testcases/block/14_table/table_with_footnote.html
|
330
|
+
- test/testcases/block/14_table/table_with_footnote.latex
|
331
|
+
- test/testcases/block/14_table/table_with_footnote.text
|
332
|
+
- test/testcases/block/15_math/normal.html
|
333
|
+
- test/testcases/block/15_math/normal.text
|
334
|
+
- test/testcases/block/16_toc/no_toc.html
|
335
|
+
- test/testcases/block/16_toc/no_toc.options
|
336
|
+
- test/testcases/block/16_toc/no_toc.text
|
337
|
+
- test/testcases/block/16_toc/toc_levels.html
|
338
|
+
- test/testcases/block/16_toc/toc_levels.options
|
339
|
+
- test/testcases/block/16_toc/toc_levels.text
|
340
|
+
- test/testcases/block/17_github_codeblock/backtick_syntax.html
|
341
|
+
- test/testcases/block/17_github_codeblock/backtick_syntax.text
|
342
|
+
- test/testcases/block/17_github_codeblock/error.html
|
343
|
+
- test/testcases/block/17_github_codeblock/error.text
|
344
|
+
- test/testcases/block/17_github_codeblock/no_newline_at_end.html
|
345
|
+
- test/testcases/block/17_github_codeblock/no_newline_at_end.text
|
346
|
+
- test/testcases/encoding.html
|
347
|
+
- test/testcases/encoding.text
|
348
|
+
- test/testcases/span/01_link/empty.html
|
349
|
+
- test/testcases/span/01_link/empty.text
|
350
|
+
- test/testcases/span/01_link/image_in_a.html
|
351
|
+
- test/testcases/span/01_link/image_in_a.text
|
352
|
+
- test/testcases/span/01_link/imagelinks.html
|
353
|
+
- test/testcases/span/01_link/imagelinks.text
|
354
|
+
- test/testcases/span/01_link/inline.html
|
355
|
+
- test/testcases/span/01_link/inline.html.19
|
356
|
+
- test/testcases/span/01_link/inline.text
|
357
|
+
- test/testcases/span/01_link/link_defs.html
|
358
|
+
- test/testcases/span/01_link/link_defs.text
|
359
|
+
- test/testcases/span/01_link/links_with_angle_brackets.html
|
360
|
+
- test/testcases/span/01_link/links_with_angle_brackets.text
|
361
|
+
- test/testcases/span/01_link/reference.html
|
362
|
+
- test/testcases/span/01_link/reference.html.19
|
363
|
+
- test/testcases/span/01_link/reference.text
|
364
|
+
- test/testcases/span/02_emphasis/empty.html
|
365
|
+
- test/testcases/span/02_emphasis/empty.text
|
366
|
+
- test/testcases/span/02_emphasis/errors.html
|
367
|
+
- test/testcases/span/02_emphasis/errors.text
|
368
|
+
- test/testcases/span/02_emphasis/nesting.html
|
369
|
+
- test/testcases/span/02_emphasis/nesting.text
|
370
|
+
- test/testcases/span/02_emphasis/normal.html
|
371
|
+
- test/testcases/span/02_emphasis/normal.text
|
372
|
+
- test/testcases/span/03_codespan/empty.html
|
373
|
+
- test/testcases/span/03_codespan/empty.text
|
374
|
+
- test/testcases/span/03_codespan/errors.html
|
375
|
+
- test/testcases/span/03_codespan/errors.text
|
376
|
+
- test/testcases/span/03_codespan/highlighting.html
|
377
|
+
- test/testcases/span/03_codespan/highlighting.text
|
378
|
+
- test/testcases/span/03_codespan/normal.html
|
379
|
+
- test/testcases/span/03_codespan/normal.text
|
380
|
+
- test/testcases/span/04_footnote/definitions.html
|
381
|
+
- test/testcases/span/04_footnote/definitions.latex
|
382
|
+
- test/testcases/span/04_footnote/definitions.text
|
383
|
+
- test/testcases/span/04_footnote/footnote_nr.html
|
384
|
+
- test/testcases/span/04_footnote/footnote_nr.latex
|
385
|
+
- test/testcases/span/04_footnote/footnote_nr.options
|
386
|
+
- test/testcases/span/04_footnote/footnote_nr.text
|
387
|
+
- test/testcases/span/04_footnote/markers.html
|
388
|
+
- test/testcases/span/04_footnote/markers.latex
|
389
|
+
- test/testcases/span/04_footnote/markers.text
|
390
|
+
- test/testcases/span/05_html/across_lines.html
|
391
|
+
- test/testcases/span/05_html/across_lines.text
|
392
|
+
- test/testcases/span/05_html/invalid.html
|
393
|
+
- test/testcases/span/05_html/invalid.text
|
394
|
+
- test/testcases/span/05_html/link_with_mailto.html
|
395
|
+
- test/testcases/span/05_html/link_with_mailto.text
|
396
|
+
- test/testcases/span/05_html/markdown_attr.html
|
397
|
+
- test/testcases/span/05_html/markdown_attr.text
|
398
|
+
- test/testcases/span/05_html/normal.html
|
399
|
+
- test/testcases/span/05_html/normal.text
|
400
|
+
- test/testcases/span/abbreviations/abbrev.html
|
401
|
+
- test/testcases/span/abbreviations/abbrev.text
|
402
|
+
- test/testcases/span/abbreviations/abbrev_defs.html
|
403
|
+
- test/testcases/span/abbreviations/abbrev_defs.text
|
404
|
+
- test/testcases/span/autolinks/url_links.html
|
405
|
+
- test/testcases/span/autolinks/url_links.text
|
406
|
+
- test/testcases/span/escaped_chars/normal.html
|
407
|
+
- test/testcases/span/escaped_chars/normal.text
|
408
|
+
- test/testcases/span/extension/comment.html
|
409
|
+
- test/testcases/span/extension/comment.text
|
410
|
+
- test/testcases/span/extension/ignored.html
|
411
|
+
- test/testcases/span/extension/ignored.text
|
412
|
+
- test/testcases/span/extension/nomarkdown.html
|
413
|
+
- test/testcases/span/extension/nomarkdown.text
|
414
|
+
- test/testcases/span/extension/options.html
|
415
|
+
- test/testcases/span/extension/options.text
|
416
|
+
- test/testcases/span/ial/simple.html
|
417
|
+
- test/testcases/span/ial/simple.text
|
418
|
+
- test/testcases/span/line_breaks/normal.html
|
419
|
+
- test/testcases/span/line_breaks/normal.latex
|
420
|
+
- test/testcases/span/line_breaks/normal.text
|
421
|
+
- test/testcases/span/math/normal.html
|
422
|
+
- test/testcases/span/math/normal.text
|
423
|
+
- test/testcases/span/text_substitutions/entities.html
|
424
|
+
- test/testcases/span/text_substitutions/entities.options
|
425
|
+
- test/testcases/span/text_substitutions/entities.text
|
426
|
+
- test/testcases/span/text_substitutions/entities_as_char.html
|
427
|
+
- test/testcases/span/text_substitutions/entities_as_char.html.19
|
428
|
+
- test/testcases/span/text_substitutions/entities_as_char.options
|
429
|
+
- test/testcases/span/text_substitutions/entities_as_char.text
|
430
|
+
- test/testcases/span/text_substitutions/entities_as_input.html
|
431
|
+
- test/testcases/span/text_substitutions/entities_as_input.options
|
432
|
+
- test/testcases/span/text_substitutions/entities_as_input.text
|
433
|
+
- test/testcases/span/text_substitutions/entities_numeric.html
|
434
|
+
- test/testcases/span/text_substitutions/entities_numeric.options
|
435
|
+
- test/testcases/span/text_substitutions/entities_numeric.text
|
436
|
+
- test/testcases/span/text_substitutions/entities_symbolic.html
|
437
|
+
- test/testcases/span/text_substitutions/entities_symbolic.options
|
438
|
+
- test/testcases/span/text_substitutions/entities_symbolic.text
|
439
|
+
- test/testcases/span/text_substitutions/greaterthan.html
|
440
|
+
- test/testcases/span/text_substitutions/greaterthan.text
|
441
|
+
- test/testcases/span/text_substitutions/lowerthan.html
|
442
|
+
- test/testcases/span/text_substitutions/lowerthan.text
|
443
|
+
- test/testcases/span/text_substitutions/typography.html
|
444
|
+
- test/testcases/span/text_substitutions/typography.html.19
|
445
|
+
- test/testcases/span/text_substitutions/typography.text
|
446
|
+
homepage: http://github.com/moonmaster9000/gitdown
|
447
|
+
licenses: []
|
448
|
+
|
449
|
+
post_install_message:
|
450
|
+
rdoc_options: []
|
451
|
+
|
452
|
+
require_paths:
|
453
|
+
- lib
|
454
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
455
|
+
none: false
|
456
|
+
requirements:
|
457
|
+
- - ">="
|
458
|
+
- !ruby/object:Gem::Version
|
459
|
+
hash: 3
|
460
|
+
segments:
|
461
|
+
- 0
|
462
|
+
version: "0"
|
463
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
464
|
+
none: false
|
465
|
+
requirements:
|
466
|
+
- - ">="
|
467
|
+
- !ruby/object:Gem::Version
|
468
|
+
hash: 3
|
469
|
+
segments:
|
470
|
+
- 0
|
471
|
+
version: "0"
|
472
|
+
requirements: []
|
473
|
+
|
474
|
+
rubyforge_project:
|
475
|
+
rubygems_version: 1.8.10
|
476
|
+
signing_key:
|
477
|
+
specification_version: 3
|
478
|
+
summary: A simple extension to the kramdown gem for supporting github flavored code blocks.
|
479
|
+
test_files:
|
480
|
+
- test/run_tests.rb
|
481
|
+
- test/test_files.rb
|
482
|
+
- test/testcases/block/01_blank_line/spaces.html
|
483
|
+
- test/testcases/block/01_blank_line/spaces.text
|
484
|
+
- test/testcases/block/01_blank_line/tabs.html
|
485
|
+
- test/testcases/block/01_blank_line/tabs.text
|
486
|
+
- test/testcases/block/02_eob/beginning.html
|
487
|
+
- test/testcases/block/02_eob/beginning.text
|
488
|
+
- test/testcases/block/02_eob/end.html
|
489
|
+
- test/testcases/block/02_eob/end.text
|
490
|
+
- test/testcases/block/02_eob/middle.html
|
491
|
+
- test/testcases/block/02_eob/middle.text
|
492
|
+
- test/testcases/block/03_paragraph/indented.html
|
493
|
+
- test/testcases/block/03_paragraph/indented.text
|
494
|
+
- test/testcases/block/03_paragraph/no_newline_at_end.html
|
495
|
+
- test/testcases/block/03_paragraph/no_newline_at_end.text
|
496
|
+
- test/testcases/block/03_paragraph/one_para.html
|
497
|
+
- test/testcases/block/03_paragraph/one_para.text
|
498
|
+
- test/testcases/block/03_paragraph/two_para.html
|
499
|
+
- test/testcases/block/03_paragraph/two_para.text
|
500
|
+
- test/testcases/block/04_header/atx_header.html
|
501
|
+
- test/testcases/block/04_header/atx_header.text
|
502
|
+
- test/testcases/block/04_header/atx_header_no_newline_at_end.html
|
503
|
+
- test/testcases/block/04_header/atx_header_no_newline_at_end.text
|
504
|
+
- test/testcases/block/04_header/setext_header.html
|
505
|
+
- test/testcases/block/04_header/setext_header.html.19
|
506
|
+
- test/testcases/block/04_header/setext_header.text
|
507
|
+
- test/testcases/block/04_header/setext_header_no_newline_at_end.html
|
508
|
+
- test/testcases/block/04_header/setext_header_no_newline_at_end.text
|
509
|
+
- test/testcases/block/04_header/with_auto_id_prefix.html
|
510
|
+
- test/testcases/block/04_header/with_auto_id_prefix.options
|
511
|
+
- test/testcases/block/04_header/with_auto_id_prefix.text
|
512
|
+
- test/testcases/block/04_header/with_auto_ids.html
|
513
|
+
- test/testcases/block/04_header/with_auto_ids.options
|
514
|
+
- test/testcases/block/04_header/with_auto_ids.text
|
515
|
+
- test/testcases/block/05_blockquote/indented.html
|
516
|
+
- test/testcases/block/05_blockquote/indented.text
|
517
|
+
- test/testcases/block/05_blockquote/lazy.html
|
518
|
+
- test/testcases/block/05_blockquote/lazy.text
|
519
|
+
- test/testcases/block/05_blockquote/nested.html
|
520
|
+
- test/testcases/block/05_blockquote/nested.text
|
521
|
+
- test/testcases/block/05_blockquote/no_newline_at_end.html
|
522
|
+
- test/testcases/block/05_blockquote/no_newline_at_end.text
|
523
|
+
- test/testcases/block/05_blockquote/very_long_line.html
|
524
|
+
- test/testcases/block/05_blockquote/very_long_line.text
|
525
|
+
- test/testcases/block/05_blockquote/with_code_blocks.html
|
526
|
+
- test/testcases/block/05_blockquote/with_code_blocks.text
|
527
|
+
- test/testcases/block/06_codeblock/error.html
|
528
|
+
- test/testcases/block/06_codeblock/error.text
|
529
|
+
- test/testcases/block/06_codeblock/lazy.html
|
530
|
+
- test/testcases/block/06_codeblock/lazy.text
|
531
|
+
- test/testcases/block/06_codeblock/no_newline_at_end.html
|
532
|
+
- test/testcases/block/06_codeblock/no_newline_at_end.text
|
533
|
+
- test/testcases/block/06_codeblock/no_newline_at_end_1.html
|
534
|
+
- test/testcases/block/06_codeblock/no_newline_at_end_1.text
|
535
|
+
- test/testcases/block/06_codeblock/normal.html
|
536
|
+
- test/testcases/block/06_codeblock/normal.text
|
537
|
+
- test/testcases/block/06_codeblock/tilde_syntax.html
|
538
|
+
- test/testcases/block/06_codeblock/tilde_syntax.text
|
539
|
+
- test/testcases/block/06_codeblock/whitespace.html
|
540
|
+
- test/testcases/block/06_codeblock/whitespace.text
|
541
|
+
- test/testcases/block/06_codeblock/with_blank_line.html
|
542
|
+
- test/testcases/block/06_codeblock/with_blank_line.text
|
543
|
+
- test/testcases/block/06_codeblock/with_eob_marker.html
|
544
|
+
- test/testcases/block/06_codeblock/with_eob_marker.text
|
545
|
+
- test/testcases/block/06_codeblock/with_ial.html
|
546
|
+
- test/testcases/block/06_codeblock/with_ial.text
|
547
|
+
- test/testcases/block/07_horizontal_rule/error.html
|
548
|
+
- test/testcases/block/07_horizontal_rule/error.html.19
|
549
|
+
- test/testcases/block/07_horizontal_rule/error.text
|
550
|
+
- test/testcases/block/07_horizontal_rule/normal.html
|
551
|
+
- test/testcases/block/07_horizontal_rule/normal.text
|
552
|
+
- test/testcases/block/07_horizontal_rule/sepspaces.html
|
553
|
+
- test/testcases/block/07_horizontal_rule/sepspaces.text
|
554
|
+
- test/testcases/block/07_horizontal_rule/septabs.html
|
555
|
+
- test/testcases/block/07_horizontal_rule/septabs.text
|
556
|
+
- test/testcases/block/08_list/escaping.html
|
557
|
+
- test/testcases/block/08_list/escaping.text
|
558
|
+
- test/testcases/block/08_list/item_ial.html
|
559
|
+
- test/testcases/block/08_list/item_ial.text
|
560
|
+
- test/testcases/block/08_list/lazy.html
|
561
|
+
- test/testcases/block/08_list/lazy.text
|
562
|
+
- test/testcases/block/08_list/list_and_hr.html
|
563
|
+
- test/testcases/block/08_list/list_and_hr.text
|
564
|
+
- test/testcases/block/08_list/list_and_others.html
|
565
|
+
- test/testcases/block/08_list/list_and_others.text
|
566
|
+
- test/testcases/block/08_list/mixed.html
|
567
|
+
- test/testcases/block/08_list/mixed.text
|
568
|
+
- test/testcases/block/08_list/nested.html
|
569
|
+
- test/testcases/block/08_list/nested.text
|
570
|
+
- test/testcases/block/08_list/other_first_element.html
|
571
|
+
- test/testcases/block/08_list/other_first_element.text
|
572
|
+
- test/testcases/block/08_list/simple_ol.html
|
573
|
+
- test/testcases/block/08_list/simple_ol.text
|
574
|
+
- test/testcases/block/08_list/simple_ul.html
|
575
|
+
- test/testcases/block/08_list/simple_ul.text
|
576
|
+
- test/testcases/block/08_list/single_item.html
|
577
|
+
- test/testcases/block/08_list/single_item.text
|
578
|
+
- test/testcases/block/08_list/special_cases.html
|
579
|
+
- test/testcases/block/08_list/special_cases.text
|
580
|
+
- test/testcases/block/09_html/comment.html
|
581
|
+
- test/testcases/block/09_html/comment.text
|
582
|
+
- test/testcases/block/09_html/content_model/deflists.html
|
583
|
+
- test/testcases/block/09_html/content_model/deflists.options
|
584
|
+
- test/testcases/block/09_html/content_model/deflists.text
|
585
|
+
- test/testcases/block/09_html/content_model/tables.html
|
586
|
+
- test/testcases/block/09_html/content_model/tables.options
|
587
|
+
- test/testcases/block/09_html/content_model/tables.text
|
588
|
+
- test/testcases/block/09_html/html_and_codeblocks.html
|
589
|
+
- test/testcases/block/09_html/html_and_codeblocks.options
|
590
|
+
- test/testcases/block/09_html/html_and_codeblocks.text
|
591
|
+
- test/testcases/block/09_html/html_and_headers.html
|
592
|
+
- test/testcases/block/09_html/html_and_headers.text
|
593
|
+
- test/testcases/block/09_html/html_to_native/code.html
|
594
|
+
- test/testcases/block/09_html/html_to_native/code.text
|
595
|
+
- test/testcases/block/09_html/html_to_native/comment.html
|
596
|
+
- test/testcases/block/09_html/html_to_native/comment.text
|
597
|
+
- test/testcases/block/09_html/html_to_native/emphasis.html
|
598
|
+
- test/testcases/block/09_html/html_to_native/emphasis.text
|
599
|
+
- test/testcases/block/09_html/html_to_native/entity.html
|
600
|
+
- test/testcases/block/09_html/html_to_native/entity.text
|
601
|
+
- test/testcases/block/09_html/html_to_native/header.html
|
602
|
+
- test/testcases/block/09_html/html_to_native/header.options
|
603
|
+
- test/testcases/block/09_html/html_to_native/header.text
|
604
|
+
- test/testcases/block/09_html/html_to_native/list_dl.html
|
605
|
+
- test/testcases/block/09_html/html_to_native/list_dl.text
|
606
|
+
- test/testcases/block/09_html/html_to_native/list_ol.html
|
607
|
+
- test/testcases/block/09_html/html_to_native/list_ol.text
|
608
|
+
- test/testcases/block/09_html/html_to_native/list_ul.html
|
609
|
+
- test/testcases/block/09_html/html_to_native/list_ul.text
|
610
|
+
- test/testcases/block/09_html/html_to_native/options
|
611
|
+
- test/testcases/block/09_html/html_to_native/paragraph.html
|
612
|
+
- test/testcases/block/09_html/html_to_native/paragraph.text
|
613
|
+
- test/testcases/block/09_html/html_to_native/table_normal.html
|
614
|
+
- test/testcases/block/09_html/html_to_native/table_normal.text
|
615
|
+
- test/testcases/block/09_html/html_to_native/table_simple.html
|
616
|
+
- test/testcases/block/09_html/html_to_native/table_simple.text
|
617
|
+
- test/testcases/block/09_html/html_to_native/typography.html
|
618
|
+
- test/testcases/block/09_html/html_to_native/typography.html.19
|
619
|
+
- test/testcases/block/09_html/html_to_native/typography.text
|
620
|
+
- test/testcases/block/09_html/invalid_html_1.html
|
621
|
+
- test/testcases/block/09_html/invalid_html_1.text
|
622
|
+
- test/testcases/block/09_html/invalid_html_2.html
|
623
|
+
- test/testcases/block/09_html/invalid_html_2.text
|
624
|
+
- test/testcases/block/09_html/markdown_attr.html
|
625
|
+
- test/testcases/block/09_html/markdown_attr.text
|
626
|
+
- test/testcases/block/09_html/not_parsed.html
|
627
|
+
- test/testcases/block/09_html/not_parsed.text
|
628
|
+
- test/testcases/block/09_html/parse_as_raw.html
|
629
|
+
- test/testcases/block/09_html/parse_as_raw.htmlinput
|
630
|
+
- test/testcases/block/09_html/parse_as_raw.options
|
631
|
+
- test/testcases/block/09_html/parse_as_raw.text
|
632
|
+
- test/testcases/block/09_html/parse_as_span.html
|
633
|
+
- test/testcases/block/09_html/parse_as_span.htmlinput
|
634
|
+
- test/testcases/block/09_html/parse_as_span.options
|
635
|
+
- test/testcases/block/09_html/parse_as_span.text
|
636
|
+
- test/testcases/block/09_html/parse_block_html.html
|
637
|
+
- test/testcases/block/09_html/parse_block_html.options
|
638
|
+
- test/testcases/block/09_html/parse_block_html.text
|
639
|
+
- test/testcases/block/09_html/processing_instruction.html
|
640
|
+
- test/testcases/block/09_html/processing_instruction.text
|
641
|
+
- test/testcases/block/09_html/simple.html
|
642
|
+
- test/testcases/block/09_html/simple.html.19
|
643
|
+
- test/testcases/block/09_html/simple.options
|
644
|
+
- test/testcases/block/09_html/simple.text
|
645
|
+
- test/testcases/block/10_ald/simple.html
|
646
|
+
- test/testcases/block/10_ald/simple.text
|
647
|
+
- test/testcases/block/11_ial/auto_id_and_ial.html
|
648
|
+
- test/testcases/block/11_ial/auto_id_and_ial.options
|
649
|
+
- test/testcases/block/11_ial/auto_id_and_ial.text
|
650
|
+
- test/testcases/block/11_ial/nested.html
|
651
|
+
- test/testcases/block/11_ial/nested.text
|
652
|
+
- test/testcases/block/11_ial/simple.html
|
653
|
+
- test/testcases/block/11_ial/simple.text
|
654
|
+
- test/testcases/block/12_extension/comment.html
|
655
|
+
- test/testcases/block/12_extension/comment.text
|
656
|
+
- test/testcases/block/12_extension/ignored.html
|
657
|
+
- test/testcases/block/12_extension/ignored.text
|
658
|
+
- test/testcases/block/12_extension/nomarkdown.html
|
659
|
+
- test/testcases/block/12_extension/nomarkdown.kramdown
|
660
|
+
- test/testcases/block/12_extension/nomarkdown.latex
|
661
|
+
- test/testcases/block/12_extension/nomarkdown.text
|
662
|
+
- test/testcases/block/12_extension/options.html
|
663
|
+
- test/testcases/block/12_extension/options.text
|
664
|
+
- test/testcases/block/12_extension/options2.html
|
665
|
+
- test/testcases/block/12_extension/options2.text
|
666
|
+
- test/testcases/block/12_extension/options3.html
|
667
|
+
- test/testcases/block/12_extension/options3.text
|
668
|
+
- test/testcases/block/13_definition_list/definition_at_beginning.html
|
669
|
+
- test/testcases/block/13_definition_list/definition_at_beginning.text
|
670
|
+
- test/testcases/block/13_definition_list/item_ial.html
|
671
|
+
- test/testcases/block/13_definition_list/item_ial.text
|
672
|
+
- test/testcases/block/13_definition_list/multiple_terms.html
|
673
|
+
- test/testcases/block/13_definition_list/multiple_terms.text
|
674
|
+
- test/testcases/block/13_definition_list/no_def_list.html
|
675
|
+
- test/testcases/block/13_definition_list/no_def_list.text
|
676
|
+
- test/testcases/block/13_definition_list/para_wrapping.html
|
677
|
+
- test/testcases/block/13_definition_list/para_wrapping.text
|
678
|
+
- test/testcases/block/13_definition_list/separated_by_eob.html
|
679
|
+
- test/testcases/block/13_definition_list/separated_by_eob.text
|
680
|
+
- test/testcases/block/13_definition_list/simple.html
|
681
|
+
- test/testcases/block/13_definition_list/simple.text
|
682
|
+
- test/testcases/block/13_definition_list/styled_terms.html
|
683
|
+
- test/testcases/block/13_definition_list/styled_terms.text
|
684
|
+
- test/testcases/block/13_definition_list/too_much_space.html
|
685
|
+
- test/testcases/block/13_definition_list/too_much_space.text
|
686
|
+
- test/testcases/block/13_definition_list/with_blocks.html
|
687
|
+
- test/testcases/block/13_definition_list/with_blocks.text
|
688
|
+
- test/testcases/block/14_table/errors.html
|
689
|
+
- test/testcases/block/14_table/errors.text
|
690
|
+
- test/testcases/block/14_table/escaping.html
|
691
|
+
- test/testcases/block/14_table/escaping.text
|
692
|
+
- test/testcases/block/14_table/footer.html
|
693
|
+
- test/testcases/block/14_table/footer.text
|
694
|
+
- test/testcases/block/14_table/header.html
|
695
|
+
- test/testcases/block/14_table/header.text
|
696
|
+
- test/testcases/block/14_table/no_table.html
|
697
|
+
- test/testcases/block/14_table/no_table.text
|
698
|
+
- test/testcases/block/14_table/simple.html
|
699
|
+
- test/testcases/block/14_table/simple.html.19
|
700
|
+
- test/testcases/block/14_table/simple.text
|
701
|
+
- test/testcases/block/14_table/table_with_footnote.html
|
702
|
+
- test/testcases/block/14_table/table_with_footnote.latex
|
703
|
+
- test/testcases/block/14_table/table_with_footnote.text
|
704
|
+
- test/testcases/block/15_math/normal.html
|
705
|
+
- test/testcases/block/15_math/normal.text
|
706
|
+
- test/testcases/block/16_toc/no_toc.html
|
707
|
+
- test/testcases/block/16_toc/no_toc.options
|
708
|
+
- test/testcases/block/16_toc/no_toc.text
|
709
|
+
- test/testcases/block/16_toc/toc_levels.html
|
710
|
+
- test/testcases/block/16_toc/toc_levels.options
|
711
|
+
- test/testcases/block/16_toc/toc_levels.text
|
712
|
+
- test/testcases/block/17_github_codeblock/backtick_syntax.html
|
713
|
+
- test/testcases/block/17_github_codeblock/backtick_syntax.text
|
714
|
+
- test/testcases/block/17_github_codeblock/error.html
|
715
|
+
- test/testcases/block/17_github_codeblock/error.text
|
716
|
+
- test/testcases/block/17_github_codeblock/no_newline_at_end.html
|
717
|
+
- test/testcases/block/17_github_codeblock/no_newline_at_end.text
|
718
|
+
- test/testcases/encoding.html
|
719
|
+
- test/testcases/encoding.text
|
720
|
+
- test/testcases/span/01_link/empty.html
|
721
|
+
- test/testcases/span/01_link/empty.text
|
722
|
+
- test/testcases/span/01_link/image_in_a.html
|
723
|
+
- test/testcases/span/01_link/image_in_a.text
|
724
|
+
- test/testcases/span/01_link/imagelinks.html
|
725
|
+
- test/testcases/span/01_link/imagelinks.text
|
726
|
+
- test/testcases/span/01_link/inline.html
|
727
|
+
- test/testcases/span/01_link/inline.html.19
|
728
|
+
- test/testcases/span/01_link/inline.text
|
729
|
+
- test/testcases/span/01_link/link_defs.html
|
730
|
+
- test/testcases/span/01_link/link_defs.text
|
731
|
+
- test/testcases/span/01_link/links_with_angle_brackets.html
|
732
|
+
- test/testcases/span/01_link/links_with_angle_brackets.text
|
733
|
+
- test/testcases/span/01_link/reference.html
|
734
|
+
- test/testcases/span/01_link/reference.html.19
|
735
|
+
- test/testcases/span/01_link/reference.text
|
736
|
+
- test/testcases/span/02_emphasis/empty.html
|
737
|
+
- test/testcases/span/02_emphasis/empty.text
|
738
|
+
- test/testcases/span/02_emphasis/errors.html
|
739
|
+
- test/testcases/span/02_emphasis/errors.text
|
740
|
+
- test/testcases/span/02_emphasis/nesting.html
|
741
|
+
- test/testcases/span/02_emphasis/nesting.text
|
742
|
+
- test/testcases/span/02_emphasis/normal.html
|
743
|
+
- test/testcases/span/02_emphasis/normal.text
|
744
|
+
- test/testcases/span/03_codespan/empty.html
|
745
|
+
- test/testcases/span/03_codespan/empty.text
|
746
|
+
- test/testcases/span/03_codespan/errors.html
|
747
|
+
- test/testcases/span/03_codespan/errors.text
|
748
|
+
- test/testcases/span/03_codespan/highlighting.html
|
749
|
+
- test/testcases/span/03_codespan/highlighting.text
|
750
|
+
- test/testcases/span/03_codespan/normal.html
|
751
|
+
- test/testcases/span/03_codespan/normal.text
|
752
|
+
- test/testcases/span/04_footnote/definitions.html
|
753
|
+
- test/testcases/span/04_footnote/definitions.latex
|
754
|
+
- test/testcases/span/04_footnote/definitions.text
|
755
|
+
- test/testcases/span/04_footnote/footnote_nr.html
|
756
|
+
- test/testcases/span/04_footnote/footnote_nr.latex
|
757
|
+
- test/testcases/span/04_footnote/footnote_nr.options
|
758
|
+
- test/testcases/span/04_footnote/footnote_nr.text
|
759
|
+
- test/testcases/span/04_footnote/markers.html
|
760
|
+
- test/testcases/span/04_footnote/markers.latex
|
761
|
+
- test/testcases/span/04_footnote/markers.text
|
762
|
+
- test/testcases/span/05_html/across_lines.html
|
763
|
+
- test/testcases/span/05_html/across_lines.text
|
764
|
+
- test/testcases/span/05_html/invalid.html
|
765
|
+
- test/testcases/span/05_html/invalid.text
|
766
|
+
- test/testcases/span/05_html/link_with_mailto.html
|
767
|
+
- test/testcases/span/05_html/link_with_mailto.text
|
768
|
+
- test/testcases/span/05_html/markdown_attr.html
|
769
|
+
- test/testcases/span/05_html/markdown_attr.text
|
770
|
+
- test/testcases/span/05_html/normal.html
|
771
|
+
- test/testcases/span/05_html/normal.text
|
772
|
+
- test/testcases/span/abbreviations/abbrev.html
|
773
|
+
- test/testcases/span/abbreviations/abbrev.text
|
774
|
+
- test/testcases/span/abbreviations/abbrev_defs.html
|
775
|
+
- test/testcases/span/abbreviations/abbrev_defs.text
|
776
|
+
- test/testcases/span/autolinks/url_links.html
|
777
|
+
- test/testcases/span/autolinks/url_links.text
|
778
|
+
- test/testcases/span/escaped_chars/normal.html
|
779
|
+
- test/testcases/span/escaped_chars/normal.text
|
780
|
+
- test/testcases/span/extension/comment.html
|
781
|
+
- test/testcases/span/extension/comment.text
|
782
|
+
- test/testcases/span/extension/ignored.html
|
783
|
+
- test/testcases/span/extension/ignored.text
|
784
|
+
- test/testcases/span/extension/nomarkdown.html
|
785
|
+
- test/testcases/span/extension/nomarkdown.text
|
786
|
+
- test/testcases/span/extension/options.html
|
787
|
+
- test/testcases/span/extension/options.text
|
788
|
+
- test/testcases/span/ial/simple.html
|
789
|
+
- test/testcases/span/ial/simple.text
|
790
|
+
- test/testcases/span/line_breaks/normal.html
|
791
|
+
- test/testcases/span/line_breaks/normal.latex
|
792
|
+
- test/testcases/span/line_breaks/normal.text
|
793
|
+
- test/testcases/span/math/normal.html
|
794
|
+
- test/testcases/span/math/normal.text
|
795
|
+
- test/testcases/span/text_substitutions/entities.html
|
796
|
+
- test/testcases/span/text_substitutions/entities.options
|
797
|
+
- test/testcases/span/text_substitutions/entities.text
|
798
|
+
- test/testcases/span/text_substitutions/entities_as_char.html
|
799
|
+
- test/testcases/span/text_substitutions/entities_as_char.html.19
|
800
|
+
- test/testcases/span/text_substitutions/entities_as_char.options
|
801
|
+
- test/testcases/span/text_substitutions/entities_as_char.text
|
802
|
+
- test/testcases/span/text_substitutions/entities_as_input.html
|
803
|
+
- test/testcases/span/text_substitutions/entities_as_input.options
|
804
|
+
- test/testcases/span/text_substitutions/entities_as_input.text
|
805
|
+
- test/testcases/span/text_substitutions/entities_numeric.html
|
806
|
+
- test/testcases/span/text_substitutions/entities_numeric.options
|
807
|
+
- test/testcases/span/text_substitutions/entities_numeric.text
|
808
|
+
- test/testcases/span/text_substitutions/entities_symbolic.html
|
809
|
+
- test/testcases/span/text_substitutions/entities_symbolic.options
|
810
|
+
- test/testcases/span/text_substitutions/entities_symbolic.text
|
811
|
+
- test/testcases/span/text_substitutions/greaterthan.html
|
812
|
+
- test/testcases/span/text_substitutions/greaterthan.text
|
813
|
+
- test/testcases/span/text_substitutions/lowerthan.html
|
814
|
+
- test/testcases/span/text_substitutions/lowerthan.text
|
815
|
+
- test/testcases/span/text_substitutions/typography.html
|
816
|
+
- test/testcases/span/text_substitutions/typography.html.19
|
817
|
+
- test/testcases/span/text_substitutions/typography.text
|