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,338 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#--
|
4
|
+
# Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
|
5
|
+
#
|
6
|
+
# This file is part of kramdown.
|
7
|
+
#
|
8
|
+
# kramdown is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation, either version 3 of the License, or
|
11
|
+
# (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#++
|
21
|
+
#
|
22
|
+
|
23
|
+
require 'strscan'
|
24
|
+
require 'stringio'
|
25
|
+
|
26
|
+
#TODO: use [[:alpha:]] in all regexp to allow parsing of international values in 1.9.1
|
27
|
+
#NOTE: use @src.pre_match only before other check/match?/... operations, otherwise the content is changed
|
28
|
+
|
29
|
+
module Kramdown
|
30
|
+
|
31
|
+
module Parser
|
32
|
+
|
33
|
+
# Used for parsing a document in kramdown format.
|
34
|
+
#
|
35
|
+
# If you want to extend the functionality of the parser, you need to do the following:
|
36
|
+
#
|
37
|
+
# * Create a new subclass
|
38
|
+
# * add the needed parser methods
|
39
|
+
# * modify the @block_parsers and @span_parsers variables and add the names of your parser
|
40
|
+
# methods
|
41
|
+
#
|
42
|
+
# Here is a small example for an extended parser class that parses ERB style tags as raw text if
|
43
|
+
# they are used as span-level elements (an equivalent block-level parser should probably also be
|
44
|
+
# made to handle the block case):
|
45
|
+
#
|
46
|
+
# require 'kramdown/parser/kramdown'
|
47
|
+
#
|
48
|
+
# class Kramdown::Parser::ERBKramdown < Kramdown::Parser::Kramdown
|
49
|
+
#
|
50
|
+
# def initialize(source, options)
|
51
|
+
# super
|
52
|
+
# @span_parsers.unshift(:erb_tags)
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# ERB_TAGS_START = /<%.*?%>/
|
56
|
+
#
|
57
|
+
# def parse_erb_tags
|
58
|
+
# @src.pos += @src.matched_size
|
59
|
+
# @tree.children << Element.new(:raw, @src.matched)
|
60
|
+
# end
|
61
|
+
# define_parser(:erb_tags, ERB_TAGS_START, '<%')
|
62
|
+
#
|
63
|
+
# end
|
64
|
+
#
|
65
|
+
# The new parser can be used like this:
|
66
|
+
#
|
67
|
+
# require 'kramdown/document'
|
68
|
+
# # require the file with the above parser class
|
69
|
+
#
|
70
|
+
# Kramdown::Document.new(input_text, :input => 'ERBKramdown').to_html
|
71
|
+
#
|
72
|
+
class Kramdown < Base
|
73
|
+
|
74
|
+
include ::Kramdown
|
75
|
+
|
76
|
+
# Create a new Kramdown parser object with the given +options+.
|
77
|
+
def initialize(source, options)
|
78
|
+
super
|
79
|
+
|
80
|
+
reset_env
|
81
|
+
|
82
|
+
@root.options[:abbrev_defs] = {}
|
83
|
+
@alds = {}
|
84
|
+
@link_defs = {}
|
85
|
+
@footnotes = {}
|
86
|
+
|
87
|
+
@block_parsers = [:blank_line, :codeblock, :codeblock_fenced, :blockquote, :atx_header,
|
88
|
+
:horizontal_rule, :list, :definition_list, :block_html, :setext_header,
|
89
|
+
:table, :footnote_definition, :link_definition, :abbrev_definition,
|
90
|
+
:block_extensions, :block_math, :eob_marker, :paragraph]
|
91
|
+
@span_parsers = [:emphasis, :codespan, :autolink, :span_html, :footnote_marker, :link, :smart_quotes, :inline_math,
|
92
|
+
:span_extensions, :html_entity, :typographic_syms, :line_break, :escaped_chars]
|
93
|
+
|
94
|
+
end
|
95
|
+
private_class_method(:new, :allocate)
|
96
|
+
|
97
|
+
|
98
|
+
# The source string provided on initialization is parsed into the @root element.
|
99
|
+
def parse
|
100
|
+
configure_parser
|
101
|
+
parse_blocks(@root, adapt_source(source))
|
102
|
+
update_tree(@root)
|
103
|
+
replace_abbreviations(@root)
|
104
|
+
@footnotes.each {|name,data| update_tree(data[:marker].value) if data[:marker]}
|
105
|
+
end
|
106
|
+
|
107
|
+
#######
|
108
|
+
protected
|
109
|
+
#######
|
110
|
+
|
111
|
+
# Adapt the object to allow parsing like specified in the options.
|
112
|
+
def configure_parser
|
113
|
+
@parsers = {}
|
114
|
+
(@block_parsers + @span_parsers).each do |name|
|
115
|
+
if self.class.has_parser?(name)
|
116
|
+
@parsers[name] = self.class.parser(name)
|
117
|
+
else
|
118
|
+
raise Kramdown::Error, "Unknown parser: #{name}"
|
119
|
+
end
|
120
|
+
end
|
121
|
+
@span_start, @span_start_re = span_parser_regexps
|
122
|
+
end
|
123
|
+
|
124
|
+
# Create the needed span parser regexps.
|
125
|
+
def span_parser_regexps(parsers = @span_parsers)
|
126
|
+
span_start = /#{parsers.map {|name| @parsers[name].span_start}.join('|')}/
|
127
|
+
[span_start, /(?=#{span_start})/]
|
128
|
+
end
|
129
|
+
|
130
|
+
# Parse all block-level elements in +text+ into the element +el+.
|
131
|
+
def parse_blocks(el, text = nil)
|
132
|
+
@stack.push([@tree, @src, @block_ial])
|
133
|
+
@tree, @src, @block_ial = el, (text.nil? ? @src : StringScanner.new(text)), nil
|
134
|
+
|
135
|
+
status = catch(:stop_block_parsing) do
|
136
|
+
while !@src.eos?
|
137
|
+
block_ial_set = @block_ial
|
138
|
+
@block_parsers.any? do |name|
|
139
|
+
if @src.check(@parsers[name].start_re)
|
140
|
+
send(@parsers[name].method)
|
141
|
+
else
|
142
|
+
false
|
143
|
+
end
|
144
|
+
end || begin
|
145
|
+
warning('Warning: this should not occur - no block parser handled the line')
|
146
|
+
add_text(@src.scan(/.*\n/))
|
147
|
+
end
|
148
|
+
@block_ial = nil if block_ial_set
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
@tree, @src, @block_ial = *@stack.pop
|
153
|
+
status
|
154
|
+
end
|
155
|
+
|
156
|
+
# Update the tree by parsing all :+raw_text+ elements with the span-level parser (resets the
|
157
|
+
# environment) and by updating the attributes from the IALs.
|
158
|
+
def update_tree(element)
|
159
|
+
last_blank = nil
|
160
|
+
element.children.map! do |child|
|
161
|
+
if child.type == :raw_text
|
162
|
+
last_blank = nil
|
163
|
+
reset_env(:src => StringScanner.new(child.value), :text_type => :text)
|
164
|
+
parse_spans(child)
|
165
|
+
child.children
|
166
|
+
elsif child.type == :eob
|
167
|
+
[]
|
168
|
+
elsif child.type == :blank
|
169
|
+
if last_blank
|
170
|
+
last_blank.value << child.value
|
171
|
+
[]
|
172
|
+
else
|
173
|
+
last_blank = child
|
174
|
+
child
|
175
|
+
end
|
176
|
+
else
|
177
|
+
last_blank = nil
|
178
|
+
update_tree(child)
|
179
|
+
update_attr_with_ial(child.attr, child.options[:ial]) if child.options[:ial]
|
180
|
+
child
|
181
|
+
end
|
182
|
+
end.flatten!
|
183
|
+
end
|
184
|
+
|
185
|
+
# Parse all span-level elements in the source string of @src into +el+.
|
186
|
+
#
|
187
|
+
# If the parameter +stop_re+ (a regexp) is used, parsing is immediately stopped if the regexp
|
188
|
+
# matches and if no block is given or if a block is given and it returns +true+.
|
189
|
+
#
|
190
|
+
# The parameter +parsers+ can be used to specify the (span-level) parsing methods that should
|
191
|
+
# be used for parsing.
|
192
|
+
#
|
193
|
+
# The parameter +text_type+ specifies the type which should be used for created text nodes.
|
194
|
+
def parse_spans(el, stop_re = nil, parsers = nil, text_type = @text_type)
|
195
|
+
@stack.push([@tree, @text_type]) unless @tree.nil?
|
196
|
+
@tree, @text_type = el, text_type
|
197
|
+
|
198
|
+
span_start = @span_start
|
199
|
+
span_start_re = @span_start_re
|
200
|
+
span_start, span_start_re = span_parser_regexps(parsers) if parsers
|
201
|
+
parsers = parsers || @span_parsers
|
202
|
+
|
203
|
+
used_re = (stop_re.nil? ? span_start_re : /(?=#{Regexp.union(stop_re, span_start)})/)
|
204
|
+
stop_re_found = false
|
205
|
+
while !@src.eos? && !stop_re_found
|
206
|
+
if result = @src.scan_until(used_re)
|
207
|
+
add_text(result)
|
208
|
+
if stop_re && @src.check(stop_re)
|
209
|
+
stop_re_found = (block_given? ? yield : true)
|
210
|
+
end
|
211
|
+
processed = parsers.any? do |name|
|
212
|
+
if @src.check(@parsers[name].start_re)
|
213
|
+
send(@parsers[name].method)
|
214
|
+
true
|
215
|
+
else
|
216
|
+
false
|
217
|
+
end
|
218
|
+
end unless stop_re_found
|
219
|
+
add_text(@src.getch) if !processed && !stop_re_found
|
220
|
+
else
|
221
|
+
(add_text(@src.rest); @src.terminate) unless stop_re
|
222
|
+
break
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
@tree, @text_type = @stack.pop
|
227
|
+
|
228
|
+
stop_re_found
|
229
|
+
end
|
230
|
+
|
231
|
+
# Reset the current parsing environment. The parameter +env+ can be used to set initial
|
232
|
+
# values for one or more environment variables.
|
233
|
+
def reset_env(opts = {})
|
234
|
+
opts = {:text_type => :raw_text, :stack => []}.merge(opts)
|
235
|
+
@src = opts[:src]
|
236
|
+
@tree = opts[:tree]
|
237
|
+
@block_ial = opts[:block_ial]
|
238
|
+
@stack = opts[:stack]
|
239
|
+
@text_type = opts[:text_type]
|
240
|
+
end
|
241
|
+
|
242
|
+
# Return the current parsing environment.
|
243
|
+
def save_env
|
244
|
+
[@src, @tree, @block_ial, @stack, @text_type]
|
245
|
+
end
|
246
|
+
|
247
|
+
# Restore the current parsing environment.
|
248
|
+
def restore_env(env)
|
249
|
+
@src, @tree, @block_ial, @stack, @text_type = *env
|
250
|
+
end
|
251
|
+
|
252
|
+
# Update the given attributes hash +attr+ with the information from the inline attribute list
|
253
|
+
# +ial+ and all referenced ALDs.
|
254
|
+
def update_attr_with_ial(attr, ial)
|
255
|
+
ial[:refs].each do |ref|
|
256
|
+
update_attr_with_ial(attr, ref) if ref = @alds[ref]
|
257
|
+
end if ial[:refs]
|
258
|
+
ial.each do |k,v|
|
259
|
+
if k == IAL_CLASS_ATTR
|
260
|
+
attr[k] = (attr[k] || '') << " #{v}"
|
261
|
+
attr[k].lstrip!
|
262
|
+
elsif k.kind_of?(String)
|
263
|
+
attr[k] = v
|
264
|
+
end
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
# Create a new block-level element, taking care of applying a preceding block IAL if it
|
269
|
+
# exists. This method should always be used for creating a block-level element!
|
270
|
+
def new_block_el(*args)
|
271
|
+
el = Element.new(*args)
|
272
|
+
el.options[:ial] = @block_ial if @block_ial && el.type != :blank && el.type != :eob
|
273
|
+
el
|
274
|
+
end
|
275
|
+
|
276
|
+
@@parsers = {}
|
277
|
+
|
278
|
+
# Struct class holding all the needed data for one block/span-level parser method.
|
279
|
+
Data = Struct.new(:name, :start_re, :span_start, :method)
|
280
|
+
|
281
|
+
# Add a parser method
|
282
|
+
#
|
283
|
+
# * with the given +name+,
|
284
|
+
# * using +start_re+ as start regexp
|
285
|
+
# * and, for span parsers, +span_start+ as a String that can be used in a regexp and
|
286
|
+
# which identifies the starting character(s)
|
287
|
+
#
|
288
|
+
# to the registry. The method name is automatically derived from the +name+ or can explicitly
|
289
|
+
# be set by using the +meth_name+ parameter.
|
290
|
+
def self.define_parser(name, start_re, span_start = nil, meth_name = "parse_#{name}")
|
291
|
+
raise "A parser with the name #{name} already exists!" if @@parsers.has_key?(name)
|
292
|
+
@@parsers[name] = Data.new(name, start_re, span_start, meth_name)
|
293
|
+
end
|
294
|
+
|
295
|
+
# Return the Data structure for the parser +name+.
|
296
|
+
def self.parser(name = nil)
|
297
|
+
@@parsers[name]
|
298
|
+
end
|
299
|
+
|
300
|
+
# Return +true+ if there is a parser called +name+.
|
301
|
+
def self.has_parser?(name)
|
302
|
+
@@parsers.has_key?(name)
|
303
|
+
end
|
304
|
+
|
305
|
+
# Regexp for matching indentation (one tab or four spaces)
|
306
|
+
INDENT = /^(?:\t| {4})/
|
307
|
+
# Regexp for matching the optional space (zero or up to three spaces)
|
308
|
+
OPT_SPACE = / {0,3}/
|
309
|
+
|
310
|
+
require 'kramdown/parser/kramdown/blank_line'
|
311
|
+
require 'kramdown/parser/kramdown/eob'
|
312
|
+
require 'kramdown/parser/kramdown/paragraph'
|
313
|
+
require 'kramdown/parser/kramdown/header'
|
314
|
+
require 'kramdown/parser/kramdown/blockquote'
|
315
|
+
require 'kramdown/parser/kramdown/table'
|
316
|
+
require 'kramdown/parser/kramdown/codeblock'
|
317
|
+
require 'kramdown/parser/kramdown/horizontal_rule'
|
318
|
+
require 'kramdown/parser/kramdown/list'
|
319
|
+
require 'kramdown/parser/kramdown/link'
|
320
|
+
require 'kramdown/parser/kramdown/extensions'
|
321
|
+
require 'kramdown/parser/kramdown/footnote'
|
322
|
+
require 'kramdown/parser/kramdown/html'
|
323
|
+
require 'kramdown/parser/kramdown/escaped_chars'
|
324
|
+
require 'kramdown/parser/kramdown/html_entity'
|
325
|
+
require 'kramdown/parser/kramdown/line_break'
|
326
|
+
require 'kramdown/parser/kramdown/typographic_symbol'
|
327
|
+
require 'kramdown/parser/kramdown/autolink'
|
328
|
+
require 'kramdown/parser/kramdown/codespan'
|
329
|
+
require 'kramdown/parser/kramdown/emphasis'
|
330
|
+
require 'kramdown/parser/kramdown/smart_quotes'
|
331
|
+
require 'kramdown/parser/kramdown/math'
|
332
|
+
require 'kramdown/parser/kramdown/abbreviation'
|
333
|
+
|
334
|
+
end
|
335
|
+
|
336
|
+
end
|
337
|
+
|
338
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#--
|
4
|
+
# Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
|
5
|
+
#
|
6
|
+
# This file is part of kramdown.
|
7
|
+
#
|
8
|
+
# kramdown is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation, either version 3 of the License, or
|
11
|
+
# (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#++
|
21
|
+
#
|
22
|
+
|
23
|
+
module Kramdown
|
24
|
+
module Parser
|
25
|
+
class Kramdown
|
26
|
+
|
27
|
+
ABBREV_DEFINITION_START = /^#{OPT_SPACE}\*\[(.+?)\]:(.*?)\n/
|
28
|
+
|
29
|
+
# Parse the link definition at the current location.
|
30
|
+
def parse_abbrev_definition
|
31
|
+
@src.pos += @src.matched_size
|
32
|
+
abbrev_id, abbrev_text = @src[1], @src[2]
|
33
|
+
abbrev_text.strip!
|
34
|
+
warning("Duplicate abbreviation ID '#{abbrev_id}' - overwriting") if @root.options[:abbrev_defs][abbrev_id]
|
35
|
+
@root.options[:abbrev_defs][abbrev_id] = abbrev_text
|
36
|
+
@tree.children << Element.new(:eob, :abbrev_def)
|
37
|
+
true
|
38
|
+
end
|
39
|
+
define_parser(:abbrev_definition, ABBREV_DEFINITION_START)
|
40
|
+
|
41
|
+
# Replace the abbreviation text with elements.
|
42
|
+
def replace_abbreviations(el, regexps = nil)
|
43
|
+
return if @root.options[:abbrev_defs].empty?
|
44
|
+
if !regexps
|
45
|
+
regexps = [Regexp.union(*@root.options[:abbrev_defs].keys.map {|k| /#{Regexp.escape(k)}/})]
|
46
|
+
regexps << /(?=(?:\W|^)#{regexps.first}(?!\w))/ # regexp should only match on word boundaries
|
47
|
+
end
|
48
|
+
el.children.map! do |child|
|
49
|
+
if child.type == :text
|
50
|
+
if child.value =~ regexps.first
|
51
|
+
result = []
|
52
|
+
strscan = StringScanner.new(child.value)
|
53
|
+
while temp = strscan.scan_until(regexps.last)
|
54
|
+
temp << strscan.scan(/\W|^/)
|
55
|
+
abbr = strscan.scan(regexps.first)
|
56
|
+
result << Element.new(:text, temp) << Element.new(:abbreviation, abbr)
|
57
|
+
end
|
58
|
+
result << Element.new(:text, strscan.rest)
|
59
|
+
else
|
60
|
+
child
|
61
|
+
end
|
62
|
+
else
|
63
|
+
replace_abbreviations(child, regexps)
|
64
|
+
child
|
65
|
+
end
|
66
|
+
end.flatten!
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#--
|
4
|
+
# Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
|
5
|
+
#
|
6
|
+
# This file is part of kramdown.
|
7
|
+
#
|
8
|
+
# kramdown is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation, either version 3 of the License, or
|
11
|
+
# (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#++
|
21
|
+
#
|
22
|
+
|
23
|
+
module Kramdown
|
24
|
+
module Parser
|
25
|
+
class Kramdown
|
26
|
+
|
27
|
+
if RUBY_VERSION == '1.8.5'
|
28
|
+
ACHARS = '\w\x80-\xFF'
|
29
|
+
elsif RUBY_VERSION < '1.9.0'
|
30
|
+
ACHARS = '\w'
|
31
|
+
else
|
32
|
+
ACHARS = '[[:alnum:]]'
|
33
|
+
end
|
34
|
+
AUTOLINK_START_STR = "<((mailto|https?|ftps?):.+?|[-.#{ACHARS}]+@[-#{ACHARS}]+(?:\.[-#{ACHARS}]+)*\.[a-z]+)>"
|
35
|
+
if RUBY_VERSION < '1.9.0'
|
36
|
+
AUTOLINK_START = /#{AUTOLINK_START_STR}/u
|
37
|
+
else
|
38
|
+
AUTOLINK_START = /#{AUTOLINK_START_STR}/
|
39
|
+
end
|
40
|
+
|
41
|
+
# Parse the autolink at the current location.
|
42
|
+
def parse_autolink
|
43
|
+
@src.pos += @src.matched_size
|
44
|
+
href = (@src[2].nil? ? "mailto:#{@src[1]}" : @src[1])
|
45
|
+
el = Element.new(:a, nil, {'href' => href})
|
46
|
+
add_text(@src[1].sub(/^mailto:/, ''), el)
|
47
|
+
@tree.children << el
|
48
|
+
end
|
49
|
+
define_parser(:autolink, AUTOLINK_START, '<')
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|