kramdown 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTERS +10 -1
- data/VERSION +1 -1
- data/bin/kramdown +15 -12
- data/lib/kramdown/converter/base.rb +2 -2
- data/lib/kramdown/converter/html.rb +22 -14
- data/lib/kramdown/converter/kramdown.rb +25 -20
- data/lib/kramdown/converter/latex.rb +11 -10
- data/lib/kramdown/converter/man.rb +3 -3
- data/lib/kramdown/converter/math_engine/mathjax.rb +1 -1
- data/lib/kramdown/converter/remove_html_tags.rb +5 -4
- data/lib/kramdown/document.rb +1 -1
- data/lib/kramdown/element.rb +1 -1
- data/lib/kramdown/options.rb +43 -15
- data/lib/kramdown/parser/base.rb +6 -0
- data/lib/kramdown/parser/html.rb +24 -18
- data/lib/kramdown/parser/kramdown/abbreviation.rb +4 -2
- data/lib/kramdown/parser/kramdown/codespan.rb +1 -1
- data/lib/kramdown/parser/kramdown/emphasis.rb +6 -1
- data/lib/kramdown/parser/kramdown/escaped_chars.rb +1 -1
- data/lib/kramdown/parser/kramdown/extensions.rb +6 -6
- data/lib/kramdown/parser/kramdown/html.rb +26 -23
- data/lib/kramdown/parser/kramdown/html_entity.rb +1 -1
- data/lib/kramdown/parser/kramdown/link.rb +4 -4
- data/lib/kramdown/parser/kramdown/list.rb +19 -18
- data/lib/kramdown/parser/kramdown/smart_quotes.rb +1 -1
- data/lib/kramdown/parser/kramdown.rb +5 -4
- data/lib/kramdown/utils/entities.rb +661 -5
- data/lib/kramdown/utils/html.rb +1 -1
- data/lib/kramdown/utils/unidecoder.rb +9 -13
- data/lib/kramdown/version.rb +1 -1
- data/man/man1/kramdown.1 +18 -0
- data/test/test_files.rb +8 -0
- data/test/testcases/block/04_header/with_header_links.html +7 -0
- data/test/testcases/block/04_header/with_header_links.options +2 -0
- data/test/testcases/block/04_header/with_header_links.text +8 -0
- data/test/testcases/block/04_header/with_line_break.html +1 -0
- data/test/testcases/block/04_header/with_line_break.text +1 -0
- data/test/testcases/block/08_list/escaping.html +4 -0
- data/test/testcases/block/08_list/escaping.text +4 -0
- data/test/testcases/block/08_list/nested_compact.kramdown +7 -0
- data/test/testcases/block/08_list/nested_compact.text +6 -0
- data/test/testcases/block/08_list/special_cases.html +10 -0
- data/test/testcases/block/08_list/special_cases.text +9 -0
- data/test/testcases/block/09_html/cdata_section.html +10 -0
- data/test/testcases/block/09_html/cdata_section.text +10 -0
- data/test/testcases/block/09_html/html_to_native/table_simple.html +3 -0
- data/test/testcases/block/09_html/html_to_native/table_simple.text +3 -0
- data/test/testcases/block/12_extension/options.html +2 -2
- data/test/testcases/block/12_extension/options2.html +2 -2
- data/test/testcases/block/14_table/table_with_footnote.html +2 -2
- data/test/testcases/block/16_toc/toc_with_footnotes.html +2 -2
- data/test/testcases/span/02_emphasis/normal.html +6 -1
- data/test/testcases/span/02_emphasis/normal.text +5 -0
- data/test/testcases/span/04_footnote/backlink_inline.html +10 -10
- data/test/testcases/span/04_footnote/backlink_text.html +2 -2
- data/test/testcases/span/04_footnote/footnote_link_text.html +12 -0
- data/test/testcases/span/04_footnote/footnote_link_text.options +1 -0
- data/test/testcases/span/04_footnote/footnote_link_text.text +4 -0
- data/test/testcases/span/04_footnote/footnote_nr.html +3 -3
- data/test/testcases/span/04_footnote/footnote_prefix.html +3 -3
- data/test/testcases/span/04_footnote/inside_footnote.html +6 -6
- data/test/testcases/span/04_footnote/markers.html +10 -10
- data/test/testcases/span/04_footnote/placement.html +2 -2
- data/test/testcases/span/04_footnote/regexp_problem.html +2 -2
- data/test/testcases/span/04_footnote/without_backlink.html +2 -2
- data/test/testcases/span/abbreviations/abbrev.html +4 -0
- data/test/testcases/span/abbreviations/abbrev.text +7 -0
- data/test/testcases/span/abbreviations/in_footnote.html +2 -2
- metadata +21 -9
@@ -1,8 +1,8 @@
|
|
1
|
-
<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1"
|
1
|
+
<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol>
|
5
|
-
<li id="fn:1"
|
5
|
+
<li id="fn:1">
|
6
6
|
<p>A <abbr title="Text File">TXT</abbr> file. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">↩</a></p>
|
7
7
|
</li>
|
8
8
|
</ol>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kramdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Leitner
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rexml
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.3.6
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.3.6
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,6 +199,11 @@ files:
|
|
199
199
|
- test/testcases/block/04_header/with_auto_ids.html
|
200
200
|
- test/testcases/block/04_header/with_auto_ids.options
|
201
201
|
- test/testcases/block/04_header/with_auto_ids.text
|
202
|
+
- test/testcases/block/04_header/with_header_links.html
|
203
|
+
- test/testcases/block/04_header/with_header_links.options
|
204
|
+
- test/testcases/block/04_header/with_header_links.text
|
205
|
+
- test/testcases/block/04_header/with_line_break.html
|
206
|
+
- test/testcases/block/04_header/with_line_break.text
|
202
207
|
- test/testcases/block/05_blockquote/indented.html
|
203
208
|
- test/testcases/block/05_blockquote/indented.text
|
204
209
|
- test/testcases/block/05_blockquote/lazy.html
|
@@ -295,6 +300,8 @@ files:
|
|
295
300
|
- test/testcases/block/08_list/mixed.text
|
296
301
|
- test/testcases/block/08_list/nested.html
|
297
302
|
- test/testcases/block/08_list/nested.text
|
303
|
+
- test/testcases/block/08_list/nested_compact.kramdown
|
304
|
+
- test/testcases/block/08_list/nested_compact.text
|
298
305
|
- test/testcases/block/08_list/other_first_element.html
|
299
306
|
- test/testcases/block/08_list/other_first_element.text
|
300
307
|
- test/testcases/block/08_list/simple_ol.html
|
@@ -305,6 +312,8 @@ files:
|
|
305
312
|
- test/testcases/block/08_list/single_item.text
|
306
313
|
- test/testcases/block/08_list/special_cases.html
|
307
314
|
- test/testcases/block/08_list/special_cases.text
|
315
|
+
- test/testcases/block/09_html/cdata_section.html
|
316
|
+
- test/testcases/block/09_html/cdata_section.text
|
308
317
|
- test/testcases/block/09_html/comment.html
|
309
318
|
- test/testcases/block/09_html/comment.text
|
310
319
|
- test/testcases/block/09_html/content_model/deflists.html
|
@@ -546,6 +555,9 @@ files:
|
|
546
555
|
- test/testcases/span/04_footnote/definitions.html
|
547
556
|
- test/testcases/span/04_footnote/definitions.latex
|
548
557
|
- test/testcases/span/04_footnote/definitions.text
|
558
|
+
- test/testcases/span/04_footnote/footnote_link_text.html
|
559
|
+
- test/testcases/span/04_footnote/footnote_link_text.options
|
560
|
+
- test/testcases/span/04_footnote/footnote_link_text.text
|
549
561
|
- test/testcases/span/04_footnote/footnote_nr.html
|
550
562
|
- test/testcases/span/04_footnote/footnote_nr.latex
|
551
563
|
- test/testcases/span/04_footnote/footnote_nr.options
|
@@ -646,7 +658,7 @@ homepage: http://kramdown.gettalong.org
|
|
646
658
|
licenses:
|
647
659
|
- MIT
|
648
660
|
metadata: {}
|
649
|
-
post_install_message:
|
661
|
+
post_install_message:
|
650
662
|
rdoc_options:
|
651
663
|
- "--main"
|
652
664
|
- lib/kramdown/document.rb
|
@@ -656,15 +668,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
656
668
|
requirements:
|
657
669
|
- - ">="
|
658
670
|
- !ruby/object:Gem::Version
|
659
|
-
version: '2.
|
671
|
+
version: '2.5'
|
660
672
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
661
673
|
requirements:
|
662
674
|
- - ">="
|
663
675
|
- !ruby/object:Gem::Version
|
664
676
|
version: '0'
|
665
677
|
requirements: []
|
666
|
-
rubygems_version: 3.
|
667
|
-
signing_key:
|
678
|
+
rubygems_version: 3.5.3
|
679
|
+
signing_key:
|
668
680
|
specification_version: 4
|
669
681
|
summary: kramdown is a fast, pure-Ruby Markdown-superset converter.
|
670
682
|
test_files: []
|