kramdown 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of kramdown might be problematic. Click here for more details.

Files changed (66) hide show
  1. data/ChangeLog +346 -0
  2. data/Rakefile +36 -29
  3. data/VERSION +1 -1
  4. data/benchmark/testing.sh +1 -1
  5. data/bin/kramdown +0 -4
  6. data/doc/index.page +1 -1
  7. data/doc/links.markdown +4 -0
  8. data/doc/news.page +2 -1
  9. data/doc/quickref.page +134 -125
  10. data/doc/syntax.page +304 -302
  11. data/lib/kramdown/converter/base.rb +14 -0
  12. data/lib/kramdown/converter/html.rb +64 -2
  13. data/lib/kramdown/converter/latex.rb +14 -7
  14. data/lib/kramdown/document.rb +7 -3
  15. data/lib/kramdown/options.rb +13 -1
  16. data/lib/kramdown/parser/kramdown.rb +70 -17
  17. data/lib/kramdown/parser/kramdown/abbreviation.rb +65 -0
  18. data/lib/kramdown/parser/kramdown/attribute_list.rb +2 -1
  19. data/lib/kramdown/parser/kramdown/blank_line.rb +1 -1
  20. data/lib/kramdown/parser/kramdown/blockquote.rb +1 -1
  21. data/lib/kramdown/parser/kramdown/codeblock.rb +2 -2
  22. data/lib/kramdown/parser/kramdown/eob.rb +1 -1
  23. data/lib/kramdown/parser/kramdown/extension.rb +86 -6
  24. data/lib/kramdown/parser/kramdown/header.rb +2 -17
  25. data/lib/kramdown/parser/kramdown/horizontal_rule.rb +1 -1
  26. data/lib/kramdown/parser/kramdown/list.rb +8 -2
  27. data/lib/kramdown/parser/kramdown/math.rb +1 -1
  28. data/lib/kramdown/parser/kramdown/paragraph.rb +1 -1
  29. data/lib/kramdown/parser/kramdown/smart_quotes.rb +2 -2
  30. data/lib/kramdown/parser/kramdown/table.rb +1 -1
  31. data/lib/kramdown/version.rb +1 -1
  32. data/man/man1/kramdown.1 +77 -63
  33. data/test/testcases/block/04_header/with_auto_id_prefix.html +3 -0
  34. data/test/testcases/block/04_header/with_auto_id_prefix.options +2 -0
  35. data/test/testcases/block/04_header/with_auto_id_prefix.text +3 -0
  36. data/test/testcases/block/08_list/item_ial.html +9 -0
  37. data/test/testcases/block/08_list/item_ial.text +5 -0
  38. data/test/testcases/block/11_ial/auto_id_and_ial.html +1 -1
  39. data/test/testcases/block/11_ial/auto_id_and_ial.text +1 -1
  40. data/test/testcases/block/11_ial/simple.html +5 -0
  41. data/test/testcases/block/11_ial/simple.text +7 -0
  42. data/test/testcases/block/12_extension/comment.text +5 -5
  43. data/test/testcases/block/12_extension/ignored.html +0 -2
  44. data/test/testcases/block/12_extension/ignored.text +3 -6
  45. data/test/testcases/block/12_extension/nomarkdown.text +4 -4
  46. data/test/testcases/block/12_extension/options.html +1 -1
  47. data/test/testcases/block/12_extension/options.text +5 -6
  48. data/test/testcases/block/12_extension/options2.text +1 -1
  49. data/test/testcases/block/12_extension/options3.text +1 -1
  50. data/test/testcases/span/abbreviations/abbrev.html +8 -0
  51. data/test/testcases/span/abbreviations/abbrev.text +15 -0
  52. data/test/testcases/span/abbreviations/abbrev_defs.html +2 -0
  53. data/test/testcases/span/abbreviations/abbrev_defs.text +5 -0
  54. data/test/testcases/span/extension/comment.html +6 -0
  55. data/test/testcases/span/extension/comment.text +6 -0
  56. data/test/testcases/span/extension/ignored.html +1 -0
  57. data/test/testcases/span/extension/ignored.text +1 -0
  58. data/test/testcases/span/extension/nomarkdown.html +1 -0
  59. data/test/testcases/span/extension/nomarkdown.text +1 -0
  60. data/test/testcases/span/extension/options.html +1 -0
  61. data/test/testcases/span/extension/options.text +1 -0
  62. data/test/testcases/span/ial/simple.html +2 -1
  63. data/test/testcases/span/ial/simple.text +1 -0
  64. data/test/testcases/span/text_substitutions/typography.html +3 -0
  65. data/test/testcases/span/text_substitutions/typography.text +3 -0
  66. metadata +275 -263
@@ -0,0 +1,3 @@
1
+ <h1 id="hallo_header-1">Header 1</h1>
2
+
3
+ <h1 id="hallo_section">123</h1>
@@ -0,0 +1,2 @@
1
+ :auto_ids: true
2
+ :auto_id_prefix: hallo_
@@ -0,0 +1,3 @@
1
+ # Header 1
2
+
3
+ # 123
@@ -0,0 +1,9 @@
1
+ <ul>
2
+ <li class="cls">IAL at first
3
+ continued</li>
4
+ <li>another </li>
5
+ <li class="cls">IAL at last
6
+ <pre><code>code
7
+ </code></pre>
8
+ </li>
9
+ </ul>
@@ -0,0 +1,5 @@
1
+ * {:.cls} IAL at first
2
+ continued
3
+ * another {:.cls}
4
+ * {:.cls} IAL at last
5
+ code
@@ -1 +1 @@
1
- <h2 id="myid">A header</h2>
1
+ <h2 class="cls" id="myid">A header</h2>
@@ -1,2 +1,2 @@
1
1
  ## A header
2
- {:#myid}
2
+ {:#myid .cls}
@@ -16,5 +16,10 @@
16
16
 
17
17
  <h2 id="myid">A header</h2>
18
18
 
19
+ <p class="cls">Some paragraph here</p>
20
+
21
+ <p class="cls">Paragraph
22
+ Paragraph</p>
23
+
19
24
  <h1 class="class" id="other">Another header</h1>
20
25
 
@@ -16,6 +16,13 @@ Some paragraph.
16
16
  ## A header
17
17
  {:#myid}
18
18
 
19
+ {:.cls}
20
+ Some paragraph here
21
+
22
+ Paragraph
23
+ {:.cls}
24
+ Paragraph
25
+
19
26
  Another header
20
27
  ==============
21
28
  {: .class #other}
@@ -1,11 +1,11 @@
1
1
  This is a simple paragraph.
2
- {::comment:}
3
- This is a comment which is ignored.
4
- {::comment:}
2
+ {::comment}
3
+ This is a comment {:/}which is {:/comment} ignored.
4
+ {:/comment}
5
5
  And another paragraph
6
6
 
7
- {::comment:: this='is' .ignore}
7
+ {::comment this='is' .ignore /}
8
8
 
9
9
  Paragraph
10
- {::comment:}
10
+ {::comment}
11
11
  Another paragraph
@@ -2,5 +2,3 @@
2
2
 
3
3
  <p>paragraph
4
4
  paragraph</p>
5
-
6
- <p>paragraph</p>
@@ -1,11 +1,8 @@
1
1
  paragraph
2
- {::something:}
2
+ {::something}
3
3
  anotherthing
4
- {::something:}
4
+ {:/something}
5
5
 
6
6
  paragraph
7
- {::something::}
8
- paragraph
9
-
10
- {::something:}
7
+ {::something/}
11
8
  paragraph
@@ -1,11 +1,11 @@
1
1
  This is a simple paragraph.
2
- {::nomarkdown:}
2
+ {::nomarkdown}
3
3
  This *is* not processed
4
- {::nomarkdown:}
4
+ {:/nomarkdown}
5
5
  And another paragraph
6
6
 
7
- {::nomarkdown:: this='is' .ignore}
7
+ {::nomarkdown this='is' .ignore /}
8
8
 
9
9
  Paragraph
10
- {::nomarkdown:}
10
+ {::nomarkdown}
11
11
  Another paragraph
@@ -1,6 +1,6 @@
1
1
  <h1>No header id</h1>
2
2
 
3
- <h1 id="with-header-id">with header id</h1>
3
+ <h1>without header id</h1>
4
4
 
5
5
  <div>
6
6
  some <span>*para*</span>
@@ -1,27 +1,26 @@
1
1
  # No header id
2
2
 
3
- {::options:: unusedvar="val"}
4
- {::options:: auto_ids="true"}
3
+ {::options unusedvar="val" /}
5
4
 
6
- # with header id
5
+ # without header id
7
6
 
8
7
  <div>
9
8
  some <span>*para*</span>
10
9
  </div>
11
10
 
12
- {::options:: parse_block_html="true" parse_span_html="true"}
11
+ {::options parse_block_html="true" parse_span_html="true" /}
13
12
 
14
13
  <div>
15
14
  some <span>*para*</span>
16
15
  </div>
17
16
 
18
- {::options:: auto_ids="false" filter_html="p em"}
17
+ {::options auto_ids="false" filter_html="p em" /}
19
18
 
20
19
  <p>
21
20
  This is <em>some</em> text.
22
21
  </p>
23
22
 
24
- {::options:: footnote_nr="10"}
23
+ {::options footnote_nr="10" /}
25
24
 
26
25
  Some text[^ab].
27
26
 
@@ -1,4 +1,4 @@
1
- {::options:: footnote_nr="da10"}
1
+ {::options footnote_nr="da10" /}
2
2
 
3
3
  Some text[^ab].
4
4
 
@@ -1,7 +1,7 @@
1
1
  x = Class.new
2
2
  {: lang="ruby"}
3
3
 
4
- {::options:: coderay_wrap="span" coderay_line_numbers="" coderay_css="class" coderay_tab_width="4"}
4
+ {::options coderay_wrap="span" coderay_line_numbers="" coderay_css="class" coderay_tab_width="4" /}
5
5
 
6
6
  x = Class.new
7
7
  {: lang="ruby"}
@@ -0,0 +1,8 @@
1
+ <p>This <abbr title="It is, yes">is some</abbr> text.</p>
2
+
3
+ <p>There <em><abbr title="It is, yes">is some</abbr> real</em> concern about <abbr title="Other">OtHeR!</abbr></p>
4
+
5
+ <p><abbr title="It is, yes">is some</abbr> Think <abbr>empty</abbr> about <abbr title="Very nice country">Österreich</abbr>.</p>
6
+
7
+ <p>no abbrev here because there is someone and kulis some</p>
8
+
@@ -0,0 +1,15 @@
1
+ This is some text.
2
+
3
+ *[is some]: Yes it is
4
+ *[OtHeR!]: Other
5
+
6
+ *[is some]: It is, yes
7
+ *[empty]:
8
+
9
+ There *is some real* concern about OtHeR!
10
+
11
+ is some Think empty about Österreich.
12
+
13
+ no abbrev here because there is someone and kulis some
14
+
15
+ *[Österreich]: Very nice country
@@ -0,0 +1,2 @@
1
+ <pre><code>*[4]: noabbrev
2
+ </code></pre>
@@ -0,0 +1,5 @@
1
+ *[ABBR]: Some abbreviations
2
+ *[one abbr]: one abbrev
3
+ *[2 and other]: another
4
+ *[3]: yet another
5
+ *[4]: noabbrev
@@ -0,0 +1,6 @@
1
+ <p>This is a paragraph.
2
+ This is a paragraph.
3
+ This is a .
4
+ This is a paragraph.
5
+ This is a simple paragraph.
6
+ This is a paragraph.</p>
@@ -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 </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>!
@@ -2,4 +2,5 @@
2
2
 
3
3
  <p>This is a <code class="hund katz" id="dog" key="val">span</code>.</p>
4
4
 
5
- <p>This is an{: .ignored} span ial.</p>
5
+ <p>This is an span ial.
6
+ This is an{: .escaped} span ial.</p>
@@ -3,3 +3,4 @@ This is a `span`{: .hund #dog}.
3
3
  This is a `span`{: .hund #dog}{: .katz key='val'}.
4
4
 
5
5
  This is an{: .ignored} span ial.
6
+ This is an\{: .escaped} span ial.
@@ -13,3 +13,6 @@ Mark&rsquo;s name. &ldquo;&hellip;you&rdquo;
13
13
  <p>&rsquo;80s are really cool.</p>
14
14
 
15
15
  <p><i>Cluster</i>&rsquo;s Last Stand.</p>
16
+
17
+ <p>Nam liber tempor
18
+ &ldquo;&hellip;At vero eos et accusam&rdquo;</p>
@@ -13,3 +13,6 @@ Mark's name. "...you"
13
13
  '80s are really cool.
14
14
 
15
15
  <i>Cluster</i>'s Last Stand.
16
+
17
+ Nam liber tempor
18
+ "...At vero eos et accusam"
metadata CHANGED
@@ -1,12 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kramdown
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 6
8
- - 0
9
- version: 0.6.0
4
+ version: 0.7.0
10
5
  platform: ruby
11
6
  authors:
12
7
  - Thomas Leitner
@@ -14,7 +9,7 @@ autorequire:
14
9
  bindir: bin
15
10
  cert_chain: []
16
11
 
17
- date: 2010-04-06 00:00:00 +02:00
12
+ date: 2010-05-07 00:00:00 +02:00
18
13
  default_executable: kramdown
19
14
  dependencies: []
20
15
 
@@ -39,301 +34,320 @@ files:
39
34
  - VERSION
40
35
  - ChangeLog
41
36
  - bin/kramdown
42
- - benchmark/benchmark.rb
43
- - benchmark/generate_data.rb
37
+ - benchmark/timing.sh
38
+ - benchmark/historic-ruby-1.9.2dev.dat
44
39
  - benchmark/historic-jruby-1.4.0.dat
45
- - benchmark/historic-ruby-1.8.6.dat
40
+ - benchmark/static-jruby-1.4.0.dat
41
+ - benchmark/generate_data.rb
46
42
  - benchmark/historic-ruby-1.8.7.dat
47
- - benchmark/historic-ruby-1.9.1p243.dat
48
- - benchmark/historic-ruby-1.9.2dev.dat
49
- - benchmark/mdbasics.text
43
+ - benchmark/historic-ruby-1.8.6.dat
44
+ - benchmark/static-ruby-1.9.2dev.dat
45
+ - benchmark/static-ruby-1.8.7.dat
50
46
  - benchmark/mdsyntax.text
51
- - benchmark/static-jruby-1.4.0.dat
47
+ - benchmark/historic-ruby-1.9.1p243.dat
52
48
  - benchmark/static-ruby-1.8.6.dat
53
- - benchmark/static-ruby-1.8.7.dat
49
+ - benchmark/mdbasics.text
54
50
  - benchmark/static-ruby-1.9.1p243.dat
55
- - benchmark/static-ruby-1.9.2dev.dat
56
51
  - benchmark/testing.sh
57
- - benchmark/timing.sh
58
- - lib/kramdown/compatibility.rb
59
- - lib/kramdown/converter/base.rb
60
- - lib/kramdown/converter/html.rb
61
- - lib/kramdown/converter/latex.rb
62
- - lib/kramdown/converter.rb
63
- - lib/kramdown/document.rb
64
- - lib/kramdown/error.rb
65
- - lib/kramdown/options.rb
66
- - lib/kramdown/parser/kramdown/attribute_list.rb
52
+ - benchmark/benchmark.rb
53
+ - lib/kramdown.rb
54
+ - lib/kramdown/parser/kramdown.rb
55
+ - lib/kramdown/parser/kramdown/abbreviation.rb
56
+ - lib/kramdown/parser/kramdown/smart_quotes.rb
57
+ - lib/kramdown/parser/kramdown/list.rb
67
58
  - lib/kramdown/parser/kramdown/autolink.rb
68
- - lib/kramdown/parser/kramdown/blank_line.rb
69
- - lib/kramdown/parser/kramdown/blockquote.rb
70
- - lib/kramdown/parser/kramdown/codeblock.rb
71
- - lib/kramdown/parser/kramdown/codespan.rb
59
+ - lib/kramdown/parser/kramdown/html_entity.rb
60
+ - lib/kramdown/parser/kramdown/paragraph.rb
61
+ - lib/kramdown/parser/kramdown/typographic_symbol.rb
62
+ - lib/kramdown/parser/kramdown/table.rb
63
+ - lib/kramdown/parser/kramdown/html.rb
72
64
  - lib/kramdown/parser/kramdown/emphasis.rb
73
- - lib/kramdown/parser/kramdown/eob.rb
74
65
  - lib/kramdown/parser/kramdown/escaped_chars.rb
75
- - lib/kramdown/parser/kramdown/extension.rb
76
- - lib/kramdown/parser/kramdown/footnote.rb
77
- - lib/kramdown/parser/kramdown/header.rb
78
- - lib/kramdown/parser/kramdown/horizontal_rule.rb
79
- - lib/kramdown/parser/kramdown/html.rb
80
- - lib/kramdown/parser/kramdown/html_entity.rb
81
66
  - lib/kramdown/parser/kramdown/line_break.rb
82
67
  - lib/kramdown/parser/kramdown/link.rb
83
- - lib/kramdown/parser/kramdown/list.rb
68
+ - lib/kramdown/parser/kramdown/horizontal_rule.rb
69
+ - lib/kramdown/parser/kramdown/extension.rb
70
+ - lib/kramdown/parser/kramdown/blockquote.rb
71
+ - lib/kramdown/parser/kramdown/eob.rb
72
+ - lib/kramdown/parser/kramdown/codespan.rb
73
+ - lib/kramdown/parser/kramdown/header.rb
84
74
  - lib/kramdown/parser/kramdown/math.rb
85
- - lib/kramdown/parser/kramdown/paragraph.rb
86
- - lib/kramdown/parser/kramdown/smart_quotes.rb
87
- - lib/kramdown/parser/kramdown/table.rb
88
- - lib/kramdown/parser/kramdown/typographic_symbol.rb
89
- - lib/kramdown/parser/kramdown.rb
90
- - lib/kramdown/parser.rb
75
+ - lib/kramdown/parser/kramdown/attribute_list.rb
76
+ - lib/kramdown/parser/kramdown/blank_line.rb
77
+ - lib/kramdown/parser/kramdown/footnote.rb
78
+ - lib/kramdown/parser/kramdown/codeblock.rb
91
79
  - lib/kramdown/version.rb
92
- - lib/kramdown.rb
80
+ - lib/kramdown/error.rb
81
+ - lib/kramdown/converter/base.rb
82
+ - lib/kramdown/converter/latex.rb
83
+ - lib/kramdown/converter/html.rb
84
+ - lib/kramdown/converter.rb
85
+ - lib/kramdown/parser.rb
86
+ - lib/kramdown/compatibility.rb
87
+ - lib/kramdown/document.rb
88
+ - lib/kramdown/options.rb
93
89
  - man/man1/kramdown.1
94
- - data/kramdown/document.html
95
90
  - data/kramdown/document.latex
91
+ - data/kramdown/document.html
92
+ - doc/quickref.page
93
+ - doc/news.page
94
+ - doc/news.feed
95
+ - doc/links.markdown
96
+ - doc/tests.page
97
+ - doc/index.page
96
98
  - doc/default.less.css
97
99
  - doc/default.template
98
- - doc/index.page
99
- - doc/installation.page
100
- - doc/news.feed
101
- - doc/news.page
102
- - doc/quickref.page
103
100
  - doc/syntax.page
104
- - doc/tests.page
101
+ - doc/installation.page
105
102
  - doc/virtual
106
103
  - test/run_tests.rb
107
- - test/test_files.rb
108
- - test/testcases/block/01_blank_line/spaces.html
109
- - test/testcases/block/01_blank_line/spaces.text
110
- - test/testcases/block/01_blank_line/tabs.html
111
- - test/testcases/block/01_blank_line/tabs.text
112
- - test/testcases/block/02_eob/beginning.html
113
- - test/testcases/block/02_eob/beginning.text
114
- - test/testcases/block/02_eob/end.html
115
- - test/testcases/block/02_eob/end.text
116
- - test/testcases/block/02_eob/middle.html
117
- - test/testcases/block/02_eob/middle.text
118
- - test/testcases/block/03_paragraph/indented.html
119
- - test/testcases/block/03_paragraph/indented.text
120
- - test/testcases/block/03_paragraph/no_newline_at_end.html
121
- - test/testcases/block/03_paragraph/no_newline_at_end.text
122
- - test/testcases/block/03_paragraph/one_para.html
123
- - test/testcases/block/03_paragraph/one_para.text
104
+ - test/testcases/encoding.text
105
+ - test/testcases/span/05_html/markdown_attr.html
106
+ - test/testcases/span/05_html/link_with_mailto.html
107
+ - test/testcases/span/05_html/link_with_mailto.text
108
+ - test/testcases/span/05_html/normal.html
109
+ - test/testcases/span/05_html/markdown_attr.text
110
+ - test/testcases/span/05_html/across_lines.text
111
+ - test/testcases/span/05_html/across_lines.html
112
+ - test/testcases/span/05_html/normal.text
113
+ - test/testcases/span/escaped_chars/normal.html
114
+ - test/testcases/span/escaped_chars/normal.text
115
+ - test/testcases/span/03_codespan/errors.text
116
+ - test/testcases/span/03_codespan/normal.html
117
+ - test/testcases/span/03_codespan/empty.html
118
+ - test/testcases/span/03_codespan/empty.text
119
+ - test/testcases/span/03_codespan/errors.html
120
+ - test/testcases/span/03_codespan/normal.text
121
+ - test/testcases/span/abbreviations/abbrev_defs.html
122
+ - test/testcases/span/abbreviations/abbrev.text
123
+ - test/testcases/span/abbreviations/abbrev.html
124
+ - test/testcases/span/abbreviations/abbrev_defs.text
125
+ - test/testcases/span/04_footnote/definitions.text
126
+ - test/testcases/span/04_footnote/footnote_nr.text
127
+ - test/testcases/span/04_footnote/footnote_nr.html
128
+ - test/testcases/span/04_footnote/markers.text
129
+ - test/testcases/span/04_footnote/markers.html
130
+ - test/testcases/span/04_footnote/footnote_nr.options
131
+ - test/testcases/span/04_footnote/definitions.html
132
+ - test/testcases/span/01_link/image_in_a.text
133
+ - test/testcases/span/01_link/inline.html
134
+ - test/testcases/span/01_link/links_with_angle_brackets.text
135
+ - test/testcases/span/01_link/reference.text
136
+ - test/testcases/span/01_link/inline.text
137
+ - test/testcases/span/01_link/reference.html
138
+ - test/testcases/span/01_link/empty.html
139
+ - test/testcases/span/01_link/link_defs.text
140
+ - test/testcases/span/01_link/empty.text
141
+ - test/testcases/span/01_link/links_with_angle_brackets.html
142
+ - test/testcases/span/01_link/imagelinks.html
143
+ - test/testcases/span/01_link/image_in_a.html
144
+ - test/testcases/span/01_link/link_defs.html
145
+ - test/testcases/span/01_link/imagelinks.text
146
+ - test/testcases/span/line_breaks/normal.html
147
+ - test/testcases/span/line_breaks/normal.text
148
+ - test/testcases/span/extension/comment.text
149
+ - test/testcases/span/extension/ignored.html
150
+ - test/testcases/span/extension/ignored.text
151
+ - test/testcases/span/extension/options.text
152
+ - test/testcases/span/extension/nomarkdown.html
153
+ - test/testcases/span/extension/comment.html
154
+ - test/testcases/span/extension/options.html
155
+ - test/testcases/span/extension/nomarkdown.text
156
+ - test/testcases/span/ial/simple.html
157
+ - test/testcases/span/ial/simple.text
158
+ - test/testcases/span/math/normal.html
159
+ - test/testcases/span/math/normal.text
160
+ - test/testcases/span/text_substitutions/typography.html
161
+ - test/testcases/span/text_substitutions/entities.html
162
+ - test/testcases/span/text_substitutions/greaterthan.html
163
+ - test/testcases/span/text_substitutions/lowerthan.text
164
+ - test/testcases/span/text_substitutions/lowerthan.html
165
+ - test/testcases/span/text_substitutions/typography.text
166
+ - test/testcases/span/text_substitutions/entities.text
167
+ - test/testcases/span/text_substitutions/greaterthan.text
168
+ - test/testcases/span/02_emphasis/errors.text
169
+ - test/testcases/span/02_emphasis/normal.html
170
+ - test/testcases/span/02_emphasis/empty.html
171
+ - test/testcases/span/02_emphasis/nesting.text
172
+ - test/testcases/span/02_emphasis/empty.text
173
+ - test/testcases/span/02_emphasis/errors.html
174
+ - test/testcases/span/02_emphasis/nesting.html
175
+ - test/testcases/span/02_emphasis/normal.text
176
+ - test/testcases/span/autolinks/url_links.html
177
+ - test/testcases/span/autolinks/url_links.text
178
+ - test/testcases/block/15_math/normal.html
179
+ - test/testcases/block/15_math/normal.text
124
180
  - test/testcases/block/03_paragraph/two_para.html
181
+ - test/testcases/block/03_paragraph/one_para.text
125
182
  - test/testcases/block/03_paragraph/two_para.text
126
- - test/testcases/block/04_header/atx_header.html
127
- - test/testcases/block/04_header/atx_header.text
128
- - test/testcases/block/04_header/atx_header_no_newline_at_end.html
129
- - test/testcases/block/04_header/atx_header_no_newline_at_end.text
130
- - test/testcases/block/04_header/setext_header.html
131
- - test/testcases/block/04_header/setext_header.text
132
- - test/testcases/block/04_header/setext_header_no_newline_at_end.html
133
- - test/testcases/block/04_header/setext_header_no_newline_at_end.text
134
- - test/testcases/block/04_header/with_auto_ids.html
135
- - test/testcases/block/04_header/with_auto_ids.options
136
- - test/testcases/block/04_header/with_auto_ids.text
137
- - test/testcases/block/05_blockquote/indented.html
138
- - test/testcases/block/05_blockquote/indented.text
139
- - test/testcases/block/05_blockquote/nested.html
140
- - test/testcases/block/05_blockquote/nested.text
141
- - test/testcases/block/05_blockquote/no_newline_at_end.html
142
- - test/testcases/block/05_blockquote/no_newline_at_end.text
143
- - test/testcases/block/05_blockquote/only_first_quoted.html
144
- - test/testcases/block/05_blockquote/only_first_quoted.text
145
- - test/testcases/block/05_blockquote/with_code_blocks.html
146
- - test/testcases/block/05_blockquote/with_code_blocks.text
147
- - test/testcases/block/06_codeblock/error.html
148
- - test/testcases/block/06_codeblock/error.text
149
- - test/testcases/block/06_codeblock/no_newline_at_end.html
150
- - test/testcases/block/06_codeblock/no_newline_at_end.text
151
- - test/testcases/block/06_codeblock/normal.html
152
- - test/testcases/block/06_codeblock/normal.text
153
- - test/testcases/block/06_codeblock/tilde_syntax.html
154
- - test/testcases/block/06_codeblock/tilde_syntax.text
155
- - test/testcases/block/06_codeblock/whitespace.html
156
- - test/testcases/block/06_codeblock/whitespace.text
157
- - test/testcases/block/06_codeblock/with_blank_line.html
158
- - test/testcases/block/06_codeblock/with_blank_line.text
159
- - test/testcases/block/06_codeblock/with_eob_marker.html
160
- - test/testcases/block/06_codeblock/with_eob_marker.text
161
- - test/testcases/block/07_horizontal_rule/error.html
162
- - test/testcases/block/07_horizontal_rule/error.text
163
- - test/testcases/block/07_horizontal_rule/normal.html
164
- - test/testcases/block/07_horizontal_rule/normal.text
165
- - test/testcases/block/07_horizontal_rule/sepspaces.html
166
- - test/testcases/block/07_horizontal_rule/sepspaces.text
167
- - test/testcases/block/07_horizontal_rule/septabs.html
168
- - test/testcases/block/07_horizontal_rule/septabs.text
169
- - test/testcases/block/08_list/escaping.html
170
- - test/testcases/block/08_list/escaping.text
171
- - test/testcases/block/08_list/list_and_hr.html
172
- - test/testcases/block/08_list/list_and_hr.text
173
- - test/testcases/block/08_list/list_and_others.html
174
- - test/testcases/block/08_list/list_and_others.text
175
- - test/testcases/block/08_list/mixed.html
176
- - test/testcases/block/08_list/mixed.text
177
- - test/testcases/block/08_list/nested.html
178
- - test/testcases/block/08_list/nested.text
179
- - test/testcases/block/08_list/other_first_element.html
180
- - test/testcases/block/08_list/other_first_element.text
181
- - test/testcases/block/08_list/simple_ol.html
182
- - test/testcases/block/08_list/simple_ol.text
183
- - test/testcases/block/08_list/simple_ul.html
184
- - test/testcases/block/08_list/simple_ul.text
185
- - test/testcases/block/08_list/single_item.html
186
- - test/testcases/block/08_list/single_item.text
187
- - test/testcases/block/08_list/special_cases.html
188
- - test/testcases/block/08_list/special_cases.text
189
- - test/testcases/block/09_html/comment.html
190
- - test/testcases/block/09_html/comment.text
191
- - test/testcases/block/09_html/content_model/deflists.html
192
- - test/testcases/block/09_html/content_model/deflists.options
193
- - test/testcases/block/09_html/content_model/deflists.text
194
- - test/testcases/block/09_html/content_model/tables.html
195
- - test/testcases/block/09_html/content_model/tables.options
196
- - test/testcases/block/09_html/content_model/tables.text
197
- - test/testcases/block/09_html/filtered_html.html
198
- - test/testcases/block/09_html/filtered_html.options
199
- - test/testcases/block/09_html/filtered_html.text
200
- - test/testcases/block/09_html/html_and_codeblocks.html
183
+ - test/testcases/block/03_paragraph/no_newline_at_end.text
184
+ - test/testcases/block/03_paragraph/one_para.html
185
+ - test/testcases/block/03_paragraph/indented.text
186
+ - test/testcases/block/03_paragraph/indented.html
187
+ - test/testcases/block/03_paragraph/no_newline_at_end.html
188
+ - test/testcases/block/14_table/errors.text
189
+ - test/testcases/block/14_table/simple.html
190
+ - test/testcases/block/14_table/simple.text
191
+ - test/testcases/block/14_table/header.html
192
+ - test/testcases/block/14_table/no_table.html
193
+ - test/testcases/block/14_table/header.text
194
+ - test/testcases/block/14_table/footer.text
195
+ - test/testcases/block/14_table/errors.html
196
+ - test/testcases/block/14_table/footer.html
197
+ - test/testcases/block/14_table/no_table.text
198
+ - test/testcases/block/12_extension/options2.text
199
+ - test/testcases/block/12_extension/comment.text
200
+ - test/testcases/block/12_extension/ignored.html
201
+ - test/testcases/block/12_extension/ignored.text
202
+ - test/testcases/block/12_extension/options.text
203
+ - test/testcases/block/12_extension/nomarkdown.html
204
+ - test/testcases/block/12_extension/options2.html
205
+ - test/testcases/block/12_extension/options3.html
206
+ - test/testcases/block/12_extension/comment.html
207
+ - test/testcases/block/12_extension/options.html
208
+ - test/testcases/block/12_extension/nomarkdown.text
209
+ - test/testcases/block/12_extension/options3.text
201
210
  - test/testcases/block/09_html/html_and_codeblocks.options
202
- - test/testcases/block/09_html/html_and_codeblocks.text
203
- - test/testcases/block/09_html/invalid_html_1.html
211
+ - test/testcases/block/09_html/comment.text
204
212
  - test/testcases/block/09_html/invalid_html_1.text
213
+ - test/testcases/block/09_html/simple.html
214
+ - test/testcases/block/09_html/parse_as_raw.text
215
+ - test/testcases/block/09_html/invalid_html_1.html
216
+ - test/testcases/block/09_html/parse_as_span.html
205
217
  - test/testcases/block/09_html/invalid_html_2.html
218
+ - test/testcases/block/09_html/html_and_codeblocks.html
219
+ - test/testcases/block/09_html/filtered_html.text
206
220
  - test/testcases/block/09_html/invalid_html_2.text
207
221
  - test/testcases/block/09_html/markdown_attr.html
208
- - test/testcases/block/09_html/markdown_attr.text
209
- - test/testcases/block/09_html/not_parsed.html
210
- - test/testcases/block/09_html/not_parsed.text
211
- - test/testcases/block/09_html/parse_as_raw.html
212
- - test/testcases/block/09_html/parse_as_raw.options
213
- - test/testcases/block/09_html/parse_as_raw.text
214
- - test/testcases/block/09_html/parse_as_span.html
222
+ - test/testcases/block/09_html/simple.text
223
+ - test/testcases/block/09_html/filtered_html.options
215
224
  - test/testcases/block/09_html/parse_as_span.options
216
- - test/testcases/block/09_html/parse_as_span.text
217
225
  - test/testcases/block/09_html/parse_block_html.html
218
- - test/testcases/block/09_html/parse_block_html.options
219
226
  - test/testcases/block/09_html/parse_block_html.text
220
- - test/testcases/block/09_html/processing_instruction.html
227
+ - test/testcases/block/09_html/markdown_attr.text
221
228
  - test/testcases/block/09_html/processing_instruction.text
222
- - test/testcases/block/09_html/simple.html
223
229
  - test/testcases/block/09_html/simple.options
224
- - test/testcases/block/09_html/simple.text
230
+ - test/testcases/block/09_html/filtered_html.html
231
+ - test/testcases/block/09_html/processing_instruction.html
232
+ - test/testcases/block/09_html/comment.html
233
+ - test/testcases/block/09_html/parse_as_raw.options
234
+ - test/testcases/block/09_html/parse_as_raw.html
235
+ - test/testcases/block/09_html/parse_as_span.text
236
+ - test/testcases/block/09_html/html_and_codeblocks.text
237
+ - test/testcases/block/09_html/not_parsed.html
238
+ - test/testcases/block/09_html/parse_block_html.options
239
+ - test/testcases/block/09_html/content_model/deflists.html
240
+ - test/testcases/block/09_html/content_model/tables.html
241
+ - test/testcases/block/09_html/content_model/tables.options
242
+ - test/testcases/block/09_html/content_model/tables.text
243
+ - test/testcases/block/09_html/content_model/deflists.options
244
+ - test/testcases/block/09_html/content_model/deflists.text
245
+ - test/testcases/block/09_html/not_parsed.text
246
+ - test/testcases/block/08_list/special_cases.html
247
+ - test/testcases/block/08_list/mixed.html
248
+ - test/testcases/block/08_list/other_first_element.html
249
+ - test/testcases/block/08_list/special_cases.text
250
+ - test/testcases/block/08_list/simple_ol.html
251
+ - test/testcases/block/08_list/nested.text
252
+ - test/testcases/block/08_list/simple_ul.html
253
+ - test/testcases/block/08_list/escaping.text
254
+ - test/testcases/block/08_list/escaping.html
255
+ - test/testcases/block/08_list/single_item.html
256
+ - test/testcases/block/08_list/item_ial.text
257
+ - test/testcases/block/08_list/list_and_hr.text
258
+ - test/testcases/block/08_list/item_ial.html
259
+ - test/testcases/block/08_list/mixed.text
260
+ - test/testcases/block/08_list/list_and_others.html
261
+ - test/testcases/block/08_list/other_first_element.text
262
+ - test/testcases/block/08_list/single_item.text
263
+ - test/testcases/block/08_list/list_and_others.text
264
+ - test/testcases/block/08_list/simple_ul.text
265
+ - test/testcases/block/08_list/simple_ol.text
266
+ - test/testcases/block/08_list/nested.html
267
+ - test/testcases/block/08_list/list_and_hr.html
268
+ - test/testcases/block/04_header/with_auto_id_prefix.text
269
+ - test/testcases/block/04_header/atx_header.text
270
+ - test/testcases/block/04_header/with_auto_id_prefix.options
271
+ - test/testcases/block/04_header/atx_header.html
272
+ - test/testcases/block/04_header/setext_header_no_newline_at_end.text
273
+ - test/testcases/block/04_header/atx_header_no_newline_at_end.text
274
+ - test/testcases/block/04_header/setext_header.html
275
+ - test/testcases/block/04_header/with_auto_id_prefix.html
276
+ - test/testcases/block/04_header/with_auto_ids.options
277
+ - test/testcases/block/04_header/with_auto_ids.text
278
+ - test/testcases/block/04_header/setext_header_no_newline_at_end.html
279
+ - test/testcases/block/04_header/with_auto_ids.html
280
+ - test/testcases/block/04_header/atx_header_no_newline_at_end.html
281
+ - test/testcases/block/04_header/setext_header.text
282
+ - test/testcases/block/02_eob/middle.html
283
+ - test/testcases/block/02_eob/end.html
284
+ - test/testcases/block/02_eob/beginning.text
285
+ - test/testcases/block/02_eob/end.text
286
+ - test/testcases/block/02_eob/beginning.html
287
+ - test/testcases/block/02_eob/middle.text
225
288
  - test/testcases/block/10_ald/simple.html
226
289
  - test/testcases/block/10_ald/simple.text
290
+ - test/testcases/block/11_ial/simple.html
227
291
  - test/testcases/block/11_ial/auto_id_and_ial.html
292
+ - test/testcases/block/11_ial/simple.text
228
293
  - test/testcases/block/11_ial/auto_id_and_ial.options
229
294
  - test/testcases/block/11_ial/auto_id_and_ial.text
230
- - test/testcases/block/11_ial/simple.html
231
- - test/testcases/block/11_ial/simple.text
232
- - test/testcases/block/12_extension/comment.html
233
- - test/testcases/block/12_extension/comment.text
234
- - test/testcases/block/12_extension/ignored.html
235
- - test/testcases/block/12_extension/ignored.text
236
- - test/testcases/block/12_extension/nomarkdown.html
237
- - test/testcases/block/12_extension/nomarkdown.text
238
- - test/testcases/block/12_extension/options.html
239
- - test/testcases/block/12_extension/options.text
240
- - test/testcases/block/12_extension/options2.html
241
- - test/testcases/block/12_extension/options2.text
242
- - test/testcases/block/12_extension/options3.html
243
- - test/testcases/block/12_extension/options3.text
244
- - test/testcases/block/13_definition_list/definition_at_beginning.html
295
+ - test/testcases/block/07_horizontal_rule/septabs.text
296
+ - test/testcases/block/07_horizontal_rule/septabs.html
297
+ - test/testcases/block/07_horizontal_rule/normal.html
298
+ - test/testcases/block/07_horizontal_rule/sepspaces.text
299
+ - test/testcases/block/07_horizontal_rule/error.html
300
+ - test/testcases/block/07_horizontal_rule/error.text
301
+ - test/testcases/block/07_horizontal_rule/normal.text
302
+ - test/testcases/block/07_horizontal_rule/sepspaces.html
303
+ - test/testcases/block/13_definition_list/separated_by_eob.html
245
304
  - test/testcases/block/13_definition_list/definition_at_beginning.text
246
- - test/testcases/block/13_definition_list/multiple_terms.html
305
+ - test/testcases/block/13_definition_list/simple.html
306
+ - test/testcases/block/13_definition_list/too_much_space.text
247
307
  - test/testcases/block/13_definition_list/multiple_terms.text
248
- - test/testcases/block/13_definition_list/no_def_list.html
308
+ - test/testcases/block/13_definition_list/simple.text
249
309
  - test/testcases/block/13_definition_list/no_def_list.text
250
- - test/testcases/block/13_definition_list/para_wrapping.html
251
- - test/testcases/block/13_definition_list/para_wrapping.text
252
- - test/testcases/block/13_definition_list/separated_by_eob.html
253
310
  - test/testcases/block/13_definition_list/separated_by_eob.text
254
- - test/testcases/block/13_definition_list/simple.html
255
- - test/testcases/block/13_definition_list/simple.text
256
- - test/testcases/block/13_definition_list/styled_terms.html
257
- - test/testcases/block/13_definition_list/styled_terms.text
258
- - test/testcases/block/13_definition_list/too_much_space.html
259
- - test/testcases/block/13_definition_list/too_much_space.text
260
311
  - test/testcases/block/13_definition_list/with_blocks.html
312
+ - test/testcases/block/13_definition_list/para_wrapping.text
313
+ - test/testcases/block/13_definition_list/definition_at_beginning.html
314
+ - test/testcases/block/13_definition_list/styled_terms.text
315
+ - test/testcases/block/13_definition_list/no_def_list.html
261
316
  - test/testcases/block/13_definition_list/with_blocks.text
262
- - test/testcases/block/14_table/errors.html
263
- - test/testcases/block/14_table/errors.text
264
- - test/testcases/block/14_table/footer.html
265
- - test/testcases/block/14_table/footer.text
266
- - test/testcases/block/14_table/header.html
267
- - test/testcases/block/14_table/header.text
268
- - test/testcases/block/14_table/no_table.html
269
- - test/testcases/block/14_table/no_table.text
270
- - test/testcases/block/14_table/simple.html
271
- - test/testcases/block/14_table/simple.text
272
- - test/testcases/block/15_math/normal.html
273
- - test/testcases/block/15_math/normal.text
317
+ - test/testcases/block/13_definition_list/too_much_space.html
318
+ - test/testcases/block/13_definition_list/para_wrapping.html
319
+ - test/testcases/block/13_definition_list/multiple_terms.html
320
+ - test/testcases/block/13_definition_list/styled_terms.html
321
+ - test/testcases/block/05_blockquote/nested.text
322
+ - test/testcases/block/05_blockquote/only_first_quoted.text
323
+ - test/testcases/block/05_blockquote/no_newline_at_end.text
324
+ - test/testcases/block/05_blockquote/indented.text
325
+ - test/testcases/block/05_blockquote/only_first_quoted.html
326
+ - test/testcases/block/05_blockquote/indented.html
327
+ - test/testcases/block/05_blockquote/no_newline_at_end.html
328
+ - test/testcases/block/05_blockquote/with_code_blocks.text
329
+ - test/testcases/block/05_blockquote/nested.html
330
+ - test/testcases/block/05_blockquote/with_code_blocks.html
331
+ - test/testcases/block/01_blank_line/spaces.html
332
+ - test/testcases/block/01_blank_line/tabs.text
333
+ - test/testcases/block/01_blank_line/spaces.text
334
+ - test/testcases/block/01_blank_line/tabs.html
335
+ - test/testcases/block/06_codeblock/whitespace.text
336
+ - test/testcases/block/06_codeblock/with_eob_marker.text
337
+ - test/testcases/block/06_codeblock/tilde_syntax.html
338
+ - test/testcases/block/06_codeblock/with_blank_line.html
339
+ - test/testcases/block/06_codeblock/tilde_syntax.text
340
+ - test/testcases/block/06_codeblock/normal.html
341
+ - test/testcases/block/06_codeblock/no_newline_at_end.text
342
+ - test/testcases/block/06_codeblock/with_eob_marker.html
343
+ - test/testcases/block/06_codeblock/with_blank_line.text
344
+ - test/testcases/block/06_codeblock/error.html
345
+ - test/testcases/block/06_codeblock/whitespace.html
346
+ - test/testcases/block/06_codeblock/no_newline_at_end.html
347
+ - test/testcases/block/06_codeblock/error.text
348
+ - test/testcases/block/06_codeblock/normal.text
274
349
  - test/testcases/encoding.html
275
- - test/testcases/encoding.text
276
- - test/testcases/span/01_link/empty.html
277
- - test/testcases/span/01_link/empty.text
278
- - test/testcases/span/01_link/image_in_a.html
279
- - test/testcases/span/01_link/image_in_a.text
280
- - test/testcases/span/01_link/imagelinks.html
281
- - test/testcases/span/01_link/imagelinks.text
282
- - test/testcases/span/01_link/inline.html
283
- - test/testcases/span/01_link/inline.text
284
- - test/testcases/span/01_link/link_defs.html
285
- - test/testcases/span/01_link/link_defs.text
286
- - test/testcases/span/01_link/links_with_angle_brackets.html
287
- - test/testcases/span/01_link/links_with_angle_brackets.text
288
- - test/testcases/span/01_link/reference.html
289
- - test/testcases/span/01_link/reference.text
290
- - test/testcases/span/02_emphasis/empty.html
291
- - test/testcases/span/02_emphasis/empty.text
292
- - test/testcases/span/02_emphasis/errors.html
293
- - test/testcases/span/02_emphasis/errors.text
294
- - test/testcases/span/02_emphasis/nesting.html
295
- - test/testcases/span/02_emphasis/nesting.text
296
- - test/testcases/span/02_emphasis/normal.html
297
- - test/testcases/span/02_emphasis/normal.text
298
- - test/testcases/span/03_codespan/empty.html
299
- - test/testcases/span/03_codespan/empty.text
300
- - test/testcases/span/03_codespan/errors.html
301
- - test/testcases/span/03_codespan/errors.text
302
- - test/testcases/span/03_codespan/normal.html
303
- - test/testcases/span/03_codespan/normal.text
304
- - test/testcases/span/04_footnote/definitions.html
305
- - test/testcases/span/04_footnote/definitions.text
306
- - test/testcases/span/04_footnote/footnote_nr.html
307
- - test/testcases/span/04_footnote/footnote_nr.options
308
- - test/testcases/span/04_footnote/footnote_nr.text
309
- - test/testcases/span/04_footnote/markers.html
310
- - test/testcases/span/04_footnote/markers.text
311
- - test/testcases/span/05_html/across_lines.html
312
- - test/testcases/span/05_html/across_lines.text
313
- - test/testcases/span/05_html/link_with_mailto.html
314
- - test/testcases/span/05_html/link_with_mailto.text
315
- - test/testcases/span/05_html/markdown_attr.html
316
- - test/testcases/span/05_html/markdown_attr.text
317
- - test/testcases/span/05_html/normal.html
318
- - test/testcases/span/05_html/normal.text
319
- - test/testcases/span/autolinks/url_links.html
320
- - test/testcases/span/autolinks/url_links.text
321
- - test/testcases/span/escaped_chars/normal.html
322
- - test/testcases/span/escaped_chars/normal.text
323
- - test/testcases/span/ial/simple.html
324
- - test/testcases/span/ial/simple.text
325
- - test/testcases/span/line_breaks/normal.html
326
- - test/testcases/span/line_breaks/normal.text
327
- - test/testcases/span/math/normal.html
328
- - test/testcases/span/math/normal.text
329
- - test/testcases/span/text_substitutions/entities.html
330
- - test/testcases/span/text_substitutions/entities.text
331
- - test/testcases/span/text_substitutions/greaterthan.html
332
- - test/testcases/span/text_substitutions/greaterthan.text
333
- - test/testcases/span/text_substitutions/lowerthan.html
334
- - test/testcases/span/text_substitutions/lowerthan.text
335
- - test/testcases/span/text_substitutions/typography.html
336
- - test/testcases/span/text_substitutions/typography.text
350
+ - test/test_files.rb
337
351
  has_rdoc: true
338
352
  homepage: http://kramdown.rubyforge.org
339
353
  licenses: []
@@ -349,20 +363,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
349
363
  requirements:
350
364
  - - ">="
351
365
  - !ruby/object:Gem::Version
352
- segments:
353
- - 0
354
366
  version: "0"
367
+ version:
355
368
  required_rubygems_version: !ruby/object:Gem::Requirement
356
369
  requirements:
357
370
  - - ">="
358
371
  - !ruby/object:Gem::Version
359
- segments:
360
- - 0
361
372
  version: "0"
373
+ version:
362
374
  requirements: []
363
375
 
364
376
  rubyforge_project: kramdown
365
- rubygems_version: 1.3.6
377
+ rubygems_version: 1.3.4
366
378
  signing_key:
367
379
  specification_version: 3
368
380
  summary: kramdown is a fast, pure-Ruby Markdown-superset converter.