kramdown 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTERS +1 -1
- data/README.md +8 -2
- data/lib/kramdown/converter/html.rb +10 -8
- data/lib/kramdown/converter/kramdown.rb +1 -1
- data/lib/kramdown/converter/latex.rb +1 -1
- data/lib/kramdown/converter/syntax_highlighter/rouge.rb +1 -1
- data/lib/kramdown/options.rb +8 -4
- data/lib/kramdown/parser/kramdown/abbreviation.rb +1 -1
- data/lib/kramdown/parser/kramdown/codespan.rb +1 -1
- data/lib/kramdown/version.rb +1 -1
- data/test/test_files.rb +12 -7
- data/test/testcases/block/03_paragraph/standalone_image.html +5 -0
- data/test/testcases/block/03_paragraph/standalone_image.text +3 -0
- data/test/testcases/block/06_codeblock/rouge/multiple.html +1 -1
- data/test/testcases/block/06_codeblock/rouge/simple.html +1 -1
- data/test/testcases/block/09_html/table.kramdown +8 -0
- data/test/testcases/block/09_html/table.text +7 -0
- data/test/testcases/block/12_extension/options.html +1 -1
- data/test/testcases/block/12_extension/options2.html +1 -1
- data/test/testcases/block/14_table/table_with_footnote.html +1 -1
- data/test/testcases/block/16_toc/toc_with_footnotes.html +1 -1
- data/test/testcases/span/03_codespan/normal.html +4 -0
- data/test/testcases/span/03_codespan/normal.text +4 -0
- data/test/testcases/span/04_footnote/backlink_inline.html +1 -1
- data/test/testcases/span/04_footnote/backlink_text.html +1 -1
- data/test/testcases/span/04_footnote/footnote_nr.html +1 -1
- data/test/testcases/span/04_footnote/footnote_prefix.html +1 -1
- data/test/testcases/span/04_footnote/inside_footnote.html +3 -3
- data/test/testcases/span/04_footnote/markers.html +5 -5
- data/test/testcases/span/04_footnote/placement.html +1 -1
- data/test/testcases/span/04_footnote/regexp_problem.html +1 -1
- data/test/testcases/span/04_footnote/without_backlink.html +1 -1
- data/test/testcases/span/abbreviations/abbrev_in_html.html +9 -0
- data/test/testcases/span/abbreviations/abbrev_in_html.text +10 -0
- data/test/testcases/span/abbreviations/in_footnote.html +1 -1
- data/test/testcases/span/text_substitutions/entities.html +1 -1
- data/test/testcases/span/text_substitutions/entities.text +1 -1
- metadata +14 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eae4381ea8cc119f4cc1422de0b8c78baad5fc08b930111f66addb73776b7f81
|
4
|
+
data.tar.gz: 75c9f3f7a2385990fa9b490e073bd8d0f34efbb30e1f1b2fe80d4592c3668648
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64dfda6f14d6080a968682c5a5f0209a0455733ffbc8bfb7caf8519971cef64a553b4fcc0e18c63812dee4ed3e703dd512abd99cdf8714c9b921e9f93c618026
|
7
|
+
data.tar.gz: bcb900ad8208a1faf047c486015b8ff45fea819e5a45716f6a3a7c04a1958301e5a499bf6baa54988890425fa4fed79fe6c414c4a68493db8a82a5be887935aa
|
data/CONTRIBUTERS
CHANGED
data/README.md
CHANGED
@@ -7,8 +7,14 @@ requests it is now released under the MIT license and therefore can easily be us
|
|
7
7
|
projects, too.
|
8
8
|
|
9
9
|
However, if you use kramdown in a commercial setting, please consider **contributing back any
|
10
|
-
changes** for the benefit of the community and/or
|
11
|
-
|
10
|
+
changes** for the benefit of the community and/or [**becoming a
|
11
|
+
sponsor**](https://github.com/sponsors/gettalong/) or [**a
|
12
|
+
patron**](https://www.patreon.com/gettalong) - thanks!
|
13
|
+
|
14
|
+
Sponsors:
|
15
|
+
|
16
|
+
* **GROSSWEBER** provides <a href="http://grossweber.com/b/kramdown" target="_blank">software
|
17
|
+
development consulting and training services</a>.
|
12
18
|
|
13
19
|
|
14
20
|
## Introduction
|
@@ -88,7 +88,7 @@ module Kramdown
|
|
88
88
|
inner(el, indent)
|
89
89
|
elsif el.children.size == 1 && el.children.first.type == :img &&
|
90
90
|
el.children.first.options[:ial]&.[](:refs)&.include?('standalone')
|
91
|
-
convert_standalone_image(el
|
91
|
+
convert_standalone_image(el, indent)
|
92
92
|
else
|
93
93
|
format_as_block_html("p", el.attr, inner(el, indent), indent)
|
94
94
|
end
|
@@ -97,12 +97,14 @@ module Kramdown
|
|
97
97
|
# Helper method used by +convert_p+ to convert a paragraph that only contains a single :img
|
98
98
|
# element.
|
99
99
|
def convert_standalone_image(el, indent)
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
figure_attr['
|
104
|
-
|
105
|
-
|
100
|
+
figure_attr = el.attr.dup
|
101
|
+
image_attr = el.children.first.attr.dup
|
102
|
+
|
103
|
+
figure_attr['class'] = image_attr.delete('class') if image_attr.key?('class') and not figure_attr.key?('class')
|
104
|
+
figure_attr['id'] = image_attr.delete('id') if image_attr.key?('id') and not figure_attr.key?('id')
|
105
|
+
|
106
|
+
body = "#{' ' * (indent + @indent)}<img#{html_attributes(image_attr)} />\n" \
|
107
|
+
"#{' ' * (indent + @indent)}<figcaption>#{image_attr['alt']}</figcaption>\n"
|
106
108
|
format_as_indented_block_html("figure", figure_attr, body, indent)
|
107
109
|
end
|
108
110
|
|
@@ -302,7 +304,7 @@ module Kramdown
|
|
302
304
|
@footnotes_by_name[name] = @footnotes.last
|
303
305
|
end
|
304
306
|
"<sup id=\"fnref:#{name}#{repeat}\" role=\"doc-noteref\">" \
|
305
|
-
"<a href=\"#fn:#{name}\" class=\"footnote\">" \
|
307
|
+
"<a href=\"#fn:#{name}\" class=\"footnote\" rel=\"footnote\">" \
|
306
308
|
"#{number}</a></sup>"
|
307
309
|
end
|
308
310
|
|
@@ -182,7 +182,7 @@ module Kramdown
|
|
182
182
|
result << inner(el, opts) << "\n"
|
183
183
|
end
|
184
184
|
|
185
|
-
HTML_TAGS_WITH_BODY = ['div', 'script', 'iframe', 'textarea']
|
185
|
+
HTML_TAGS_WITH_BODY = ['div', 'script', 'iframe', 'textarea', 'th', 'td']
|
186
186
|
|
187
187
|
HTML_ELEMENT_TYPES = [:entity, :text, :html_element].freeze
|
188
188
|
private_constant :HTML_ELEMENT_TYPES
|
@@ -517,7 +517,7 @@ module Kramdown
|
|
517
517
|
8194 => ['\hskip .5em\relax'],
|
518
518
|
8195 => ['\quad'],
|
519
519
|
} # :nodoc:
|
520
|
-
ENTITY_CONV_TABLE.each_value {|v| v[0] = "
|
520
|
+
ENTITY_CONV_TABLE.each_value {|v| v[0] = "#{v[0]}{}" }
|
521
521
|
|
522
522
|
def entity_to_latex(entity)
|
523
523
|
text, package = ENTITY_CONV_TABLE[entity.code_point]
|
@@ -70,7 +70,7 @@ module Kramdown::Converter::SyntaxHighlighter
|
|
70
70
|
when Class
|
71
71
|
formatter
|
72
72
|
when /\A[[:upper:]][[:alnum:]_]*\z/
|
73
|
-
::Rouge::Formatters.const_get(formatter)
|
73
|
+
::Rouge::Formatters.const_get(formatter, false)
|
74
74
|
else
|
75
75
|
# Available in Rouge 2.0 or later
|
76
76
|
::Rouge::Formatters::HTMLLegacy
|
data/lib/kramdown/options.rb
CHANGED
@@ -39,6 +39,7 @@ module Kramdown
|
|
39
39
|
ALLOWED_TYPES = [String, Integer, Float, Symbol, Boolean, Object]
|
40
40
|
|
41
41
|
@options = {}
|
42
|
+
@cached_defaults = nil
|
42
43
|
|
43
44
|
# Define a new option called +name+ (a Symbol) with the given +type+ (String, Integer, Float,
|
44
45
|
# Symbol, Boolean, Object), default value +default+ and the description +desc+. If a block is
|
@@ -54,6 +55,7 @@ module Kramdown
|
|
54
55
|
raise ArgumentError, "Invalid type for default value" if !(type === default) && !default.nil?
|
55
56
|
raise ArgumentError, "Missing validator block" if type == Object && block.nil?
|
56
57
|
@options[name] = Definition.new(name, type, default, desc, block)
|
58
|
+
@cached_defaults = nil
|
57
59
|
end
|
58
60
|
|
59
61
|
# Return all option definitions.
|
@@ -68,15 +70,17 @@ module Kramdown
|
|
68
70
|
|
69
71
|
# Return a Hash with the default values for all options.
|
70
72
|
def self.defaults
|
71
|
-
|
72
|
-
|
73
|
-
|
73
|
+
@cached_defaults ||= begin
|
74
|
+
temp = {}
|
75
|
+
@options.each {|_n, o| temp[o.name] = o.default }
|
76
|
+
temp.freeze
|
77
|
+
end
|
74
78
|
end
|
75
79
|
|
76
80
|
# Merge the #defaults Hash with the *parsed* options from the given Hash, i.e. only valid option
|
77
81
|
# names are considered and their value is run through the #parse method.
|
78
82
|
def self.merge(hash)
|
79
|
-
temp = defaults
|
83
|
+
temp = defaults.dup
|
80
84
|
hash.each do |k, v|
|
81
85
|
k = k.to_sym
|
82
86
|
temp[k] = @options.key?(k) ? parse(k, v) : v
|
@@ -46,7 +46,7 @@ module Kramdown
|
|
46
46
|
regexps << /(?=(?:\W|^)#{regexps.first}(?!\w))/ # regexp should only match on word boundaries
|
47
47
|
end
|
48
48
|
el.children.map! do |child|
|
49
|
-
if child.type == :text
|
49
|
+
if child.type == :text && el.options[:content_model] != :raw
|
50
50
|
if child.value =~ regexps.first
|
51
51
|
result = []
|
52
52
|
strscan = Kramdown::Utils::StringScanner.new(child.value, child.options[:location])
|
data/lib/kramdown/version.rb
CHANGED
data/test/test_files.rb
CHANGED
@@ -21,16 +21,20 @@ begin
|
|
21
21
|
end
|
22
22
|
|
23
23
|
# custom formatter for tests
|
24
|
-
|
24
|
+
module Rouge
|
25
|
+
module Formatters
|
26
|
+
class RougeHTMLFormatters < Kramdown::Converter::SyntaxHighlighter::Rouge.formatter_class
|
25
27
|
|
26
|
-
|
28
|
+
tag 'rouge_html_formatters'
|
27
29
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
def stream(tokens, &b)
|
31
|
+
yield %(<div class="custom-class">)
|
32
|
+
super
|
33
|
+
yield %(</div>)
|
34
|
+
end
|
33
35
|
|
36
|
+
end
|
37
|
+
end
|
34
38
|
end
|
35
39
|
rescue LoadError, SyntaxError, NameError
|
36
40
|
end
|
@@ -180,6 +184,7 @@ class TestFiles < Minitest::Test
|
|
180
184
|
'test/testcases/block/03_paragraph/standalone_image.text', # bc of standalone image
|
181
185
|
'test/testcases/cjk-line-break.text',
|
182
186
|
'test/testcases/block/09_html/standalone_image_in_div.html', # bc of standalone image
|
187
|
+
'test/testcases/span/abbreviations/abbrev_in_html.text', # bc of invalid abbr tag in SVG
|
183
188
|
].compact
|
184
189
|
Dir[File.dirname(__FILE__) + '/testcases/**/*.text'].each do |text_file|
|
185
190
|
next if EXCLUDE_TEXT_FILES.any? {|f| text_file =~ /#{f}$/ }
|
@@ -5,4 +5,9 @@
|
|
5
5
|
<figcaption>standalone image</figcaption>
|
6
6
|
</figure>
|
7
7
|
|
8
|
+
<figure id="block-id" class="block-class" block-key="block-value">
|
9
|
+
<img src="some.jpg" alt="standalone image" id="id" class="class" key="value" />
|
10
|
+
<figcaption>standalone image</figcaption>
|
11
|
+
</figure>
|
12
|
+
|
8
13
|
<p>para</p>
|
@@ -6,6 +6,6 @@
|
|
6
6
|
</code></pre>
|
7
7
|
</div></div></div>
|
8
8
|
|
9
|
-
<div class="language-php highlighter-rouge"><div class="custom-class"><div class="highlight"><pre class="highlight"><code><span class="nv">$foo</span> <span class="o">=</span> <span class="k">new</span> <span class="
|
9
|
+
<div class="language-php highlighter-rouge"><div class="custom-class"><div class="highlight"><pre class="highlight"><code><span class="nv">$foo</span> <span class="o">=</span> <span class="k">new</span> <span class="nc">Bar</span><span class="p">;</span>
|
10
10
|
</code></pre>
|
11
11
|
</div></div></div>
|
@@ -5,6 +5,6 @@
|
|
5
5
|
</code></pre>
|
6
6
|
</div></div>
|
7
7
|
|
8
|
-
<div class="language-php highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$foo</span> <span class="o">=</span> <span class="k">new</span> <span class="
|
8
|
+
<div class="language-php highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$foo</span> <span class="o">=</span> <span class="k">new</span> <span class="nc">Bar</span><span class="p">;</span>
|
9
9
|
</code></pre>
|
10
10
|
</div></div>
|
@@ -10,7 +10,7 @@ some <span>*para*</span>
|
|
10
10
|
<p>some <span><em>para</em></span></p>
|
11
11
|
</div>
|
12
12
|
|
13
|
-
<p>Some text<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote">10</a></sup>.</p>
|
13
|
+
<p>Some text<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote" rel="footnote">10</a></sup>.</p>
|
14
14
|
|
15
15
|
<div class="footnotes" role="doc-endnotes">
|
16
16
|
<ol start="10">
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
<p>Some text<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote">1</a></sup>.</p>
|
2
|
+
<p>Some text<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote" rel="footnote">1</a></sup>.</p>
|
3
3
|
|
4
4
|
<div class="footnotes" role="doc-endnotes">
|
5
5
|
<ol>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<table>
|
2
2
|
<tbody>
|
3
3
|
<tr>
|
4
|
-
<td>this is <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote">1</a></sup></td>
|
4
|
+
<td>this is <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup></td>
|
5
5
|
<td>a table</td>
|
6
6
|
</tr>
|
7
7
|
<tr>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<li><a href="#header1-level-1" id="markdown-toc-header1-level-1">Header level 1</a></li>
|
3
3
|
</ul>
|
4
4
|
|
5
|
-
<h1 id="header1-level-1">Header<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote">1</a></sup> level 1</h1>
|
5
|
+
<h1 id="header1-level-1">Header<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup> level 1</h1>
|
6
6
|
|
7
7
|
<div class="footnotes" role="doc-endnotes">
|
8
8
|
<ol>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>This is <sup id="fnref:paragraph" role="doc-noteref"><a href="#fn:paragraph" class="footnote">1</a></sup><sup id="fnref:header" role="doc-noteref"><a href="#fn:header" class="footnote">2</a></sup><sup id="fnref:blockquote" role="doc-noteref"><a href="#fn:blockquote" class="footnote">3</a></sup><sup id="fnref:codeblock" role="doc-noteref"><a href="#fn:codeblock" class="footnote">4</a></sup><sup id="fnref:list" role="doc-noteref"><a href="#fn:list" class="footnote">5</a></sup><sup id="fnref:table" role="doc-noteref"><a href="#fn:table" class="footnote">6</a></sup><sup id="fnref:hrule" role="doc-noteref"><a href="#fn:hrule" class="footnote">7</a></sup><sup id="fnref:mathblock" role="doc-noteref"><a href="#fn:mathblock" class="footnote">8</a></sup><sup id="fnref:html" role="doc-noteref"><a href="#fn:html" class="footnote">9</a></sup></p>
|
1
|
+
<p>This is <sup id="fnref:paragraph" role="doc-noteref"><a href="#fn:paragraph" class="footnote" rel="footnote">1</a></sup><sup id="fnref:header" role="doc-noteref"><a href="#fn:header" class="footnote" rel="footnote">2</a></sup><sup id="fnref:blockquote" role="doc-noteref"><a href="#fn:blockquote" class="footnote" rel="footnote">3</a></sup><sup id="fnref:codeblock" role="doc-noteref"><a href="#fn:codeblock" class="footnote" rel="footnote">4</a></sup><sup id="fnref:list" role="doc-noteref"><a href="#fn:list" class="footnote" rel="footnote">5</a></sup><sup id="fnref:table" role="doc-noteref"><a href="#fn:table" class="footnote" rel="footnote">6</a></sup><sup id="fnref:hrule" role="doc-noteref"><a href="#fn:hrule" class="footnote" rel="footnote">7</a></sup><sup id="fnref:mathblock" role="doc-noteref"><a href="#fn:mathblock" class="footnote" rel="footnote">8</a></sup><sup id="fnref:html" role="doc-noteref"><a href="#fn:html" class="footnote" rel="footnote">9</a></sup></p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>Some footnote here<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote">1</a></sup></p>
|
1
|
+
<p>Some footnote here<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote" rel="footnote">1</a></sup></p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>This is a footnote<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote">35</a></sup>. And another<sup id="fnref:bc" role="doc-noteref"><a href="#fn:bc" class="footnote">36</a></sup>.</p>
|
1
|
+
<p>This is a footnote<sup id="fnref:ab" role="doc-noteref"><a href="#fn:ab" class="footnote" rel="footnote">35</a></sup>. And another<sup id="fnref:bc" role="doc-noteref"><a href="#fn:bc" class="footnote" rel="footnote">36</a></sup>.</p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol start="35">
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>This is a<sup id="fnref:adf123-ab" role="doc-noteref"><a href="#fn:adf123-ab" class="footnote">1</a></sup> footnote<sup id="fnref:adf123-ab:1" role="doc-noteref"><a href="#fn:adf123-ab" class="footnote">1</a></sup>. And another<sup id="fnref:adf123-bc" role="doc-noteref"><a href="#fn:adf123-bc" class="footnote">2</a></sup>.</p>
|
1
|
+
<p>This is a<sup id="fnref:adf123-ab" role="doc-noteref"><a href="#fn:adf123-ab" class="footnote" rel="footnote">1</a></sup> footnote<sup id="fnref:adf123-ab:1" role="doc-noteref"><a href="#fn:adf123-ab" class="footnote" rel="footnote">1</a></sup>. And another<sup id="fnref:adf123-bc" role="doc-noteref"><a href="#fn:adf123-bc" class="footnote" rel="footnote">2</a></sup>.</p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<p>Lorem ipsum<sup id="fnref:first" role="doc-noteref"><a href="#fn:first" class="footnote">1</a></sup> dolor sit amet.</p>
|
1
|
+
<p>Lorem ipsum<sup id="fnref:first" role="doc-noteref"><a href="#fn:first" class="footnote" rel="footnote">1</a></sup> dolor sit amet.</p>
|
2
2
|
|
3
|
-
<p>Lorem ipsum<sup id="fnref:second" role="doc-noteref"><a href="#fn:second" class="footnote">2</a></sup> dolor sit amet.</p>
|
3
|
+
<p>Lorem ipsum<sup id="fnref:second" role="doc-noteref"><a href="#fn:second" class="footnote" rel="footnote">2</a></sup> dolor sit amet.</p>
|
4
4
|
|
5
5
|
<div class="footnotes" role="doc-endnotes">
|
6
6
|
<ol>
|
7
7
|
<li id="fn:first" role="doc-endnote">
|
8
|
-
<p>Consecutur adisping.<sup id="fnref:third" role="doc-noteref"><a href="#fn:third" class="footnote">3</a></sup> <a href="#fnref:first" class="reversefootnote" role="doc-backlink">↩</a></p>
|
8
|
+
<p>Consecutur adisping.<sup id="fnref:third" role="doc-noteref"><a href="#fn:third" class="footnote" rel="footnote">3</a></sup> <a href="#fnref:first" class="reversefootnote" role="doc-backlink">↩</a></p>
|
9
9
|
</li>
|
10
10
|
<li id="fn:second" role="doc-endnote">
|
11
11
|
<p>Sed ut perspiciatis unde omnis. <a href="#fnref:second" class="reversefootnote" role="doc-backlink">↩</a></p>
|
@@ -1,18 +1,18 @@
|
|
1
|
-
<p>This is some *ref.<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote">1</a></sup></p>
|
1
|
+
<p>This is some *ref.<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote" rel="footnote">1</a></sup></p>
|
2
2
|
|
3
3
|
<blockquote>
|
4
|
-
<p>a blockquote <sup id="fnref:3" role="doc-noteref"><a href="#fn:3" class="footnote">2</a></sup></p>
|
4
|
+
<p>a blockquote <sup id="fnref:3" role="doc-noteref"><a href="#fn:3" class="footnote" rel="footnote">2</a></sup></p>
|
5
5
|
</blockquote>
|
6
6
|
|
7
7
|
<ul>
|
8
|
-
<li>and a list item <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote">3</a></sup></li>
|
8
|
+
<li>and a list item <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">3</a></sup></li>
|
9
9
|
</ul>
|
10
10
|
|
11
|
-
<h1>And a header<sup id="fnref:now" role="doc-noteref"><a href="#fn:now" class="footnote">4</a></sup></h1>
|
11
|
+
<h1>And a header<sup id="fnref:now" role="doc-noteref"><a href="#fn:now" class="footnote" rel="footnote">4</a></sup></h1>
|
12
12
|
|
13
13
|
<p>A marker without a definition [^without].</p>
|
14
14
|
|
15
|
-
<p>A marker <sup id="fnref:empty" role="doc-noteref"><a href="#fn:empty" class="footnote">5</a></sup> used twice<sup id="fnref:fn:1" role="doc-noteref"><a href="#fn:fn" class="footnote">1</a></sup> and thrice<sup id="fnref:fn:2" role="doc-noteref"><a href="#fn:fn" class="footnote">1</a></sup>.</p>
|
15
|
+
<p>A marker <sup id="fnref:empty" role="doc-noteref"><a href="#fn:empty" class="footnote" rel="footnote">5</a></sup> used twice<sup id="fnref:fn:1" role="doc-noteref"><a href="#fn:fn" class="footnote" rel="footnote">1</a></sup> and thrice<sup id="fnref:fn:2" role="doc-noteref"><a href="#fn:fn" class="footnote" rel="footnote">1</a></sup>.</p>
|
16
16
|
|
17
17
|
<div class="footnotes" role="doc-endnotes">
|
18
18
|
<ol>
|
@@ -6,6 +6,6 @@
|
|
6
6
|
</ol>
|
7
7
|
</div>
|
8
8
|
|
9
|
-
<p>Some para with a<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote">1</a></sup> footnote.</p>
|
9
|
+
<p>Some para with a<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup> footnote.</p>
|
10
10
|
|
11
11
|
<p>And another para.</p>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<h1>Something</h1>
|
2
|
-
<p>something<sup id="fnref:note1" role="doc-noteref"><a href="#fn:note1" class="footnote">1</a></sup>.</p>
|
2
|
+
<p>something<sup id="fnref:note1" role="doc-noteref"><a href="#fn:note1" class="footnote" rel="footnote">1</a></sup>.</p>
|
3
3
|
|
4
4
|
<h1>Footnotes</h1>
|
5
5
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>Some footnote here<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote">1</a></sup></p>
|
1
|
+
<p>Some footnote here<sup id="fnref:fn" role="doc-noteref"><a href="#fn:fn" class="footnote" rel="footnote">1</a></sup></p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<ol>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<p>This is <em>some <abbr title="This Escapes SVG Text.">TEST</abbr></em> to check.</p>
|
2
|
+
|
3
|
+
<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<text x="20" y="20">This TEST fails.</text>
|
5
|
+
</svg>
|
6
|
+
<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg">
|
7
|
+
<text x="20" y="20">This <abbr title="This Escapes SVG Text.">TEST</abbr> fails.</text>
|
8
|
+
</svg>
|
9
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
This is <em>some TEST</em> to check.
|
2
|
+
|
3
|
+
<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<text x="20" y="20">This TEST fails.</text>
|
5
|
+
</svg>
|
6
|
+
<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg">
|
7
|
+
<text x="20" y="20" markdown="span">This TEST fails.</text>
|
8
|
+
</svg>
|
9
|
+
|
10
|
+
*[TEST]: This Escapes SVG Text.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote">1</a></sup></p>
|
1
|
+
<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup></p>
|
2
2
|
|
3
3
|
<div class="footnotes" role="doc-endnotes">
|
4
4
|
<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.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Leitner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rexml
|
@@ -42,16 +42,22 @@ dependencies:
|
|
42
42
|
name: rouge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
45
48
|
- - ">="
|
46
49
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
50
|
+
version: 3.26.0
|
48
51
|
type: :development
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '3.0'
|
52
58
|
- - ">="
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
60
|
+
version: 3.26.0
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: stringex
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -366,6 +372,8 @@ files:
|
|
366
372
|
- test/testcases/block/09_html/simple.text
|
367
373
|
- test/testcases/block/09_html/standalone_image_in_div.htmlinput
|
368
374
|
- test/testcases/block/09_html/standalone_image_in_div.text
|
375
|
+
- test/testcases/block/09_html/table.kramdown
|
376
|
+
- test/testcases/block/09_html/table.text
|
369
377
|
- test/testcases/block/09_html/textarea.html
|
370
378
|
- test/testcases/block/09_html/textarea.text
|
371
379
|
- test/testcases/block/09_html/xml.html
|
@@ -580,6 +588,8 @@ files:
|
|
580
588
|
- test/testcases/span/abbreviations/abbrev.text
|
581
589
|
- test/testcases/span/abbreviations/abbrev_defs.html
|
582
590
|
- test/testcases/span/abbreviations/abbrev_defs.text
|
591
|
+
- test/testcases/span/abbreviations/abbrev_in_html.html
|
592
|
+
- test/testcases/span/abbreviations/abbrev_in_html.text
|
583
593
|
- test/testcases/span/abbreviations/in_footnote.html
|
584
594
|
- test/testcases/span/abbreviations/in_footnote.text
|
585
595
|
- test/testcases/span/autolinks/url_links.html
|