RedCloth 3.0.4 → 4.0.0

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

Potentially problematic release.


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

Files changed (63) hide show
  1. data/CHANGELOG +17 -0
  2. data/COPYING +18 -0
  3. data/README +156 -0
  4. data/Rakefile +238 -0
  5. data/bin/redcloth +27 -2
  6. data/ext/redcloth_scan/extconf.rb +9 -0
  7. data/ext/redcloth_scan/redcloth.h +149 -0
  8. data/ext/redcloth_scan/redcloth_attributes.c +650 -0
  9. data/ext/redcloth_scan/redcloth_attributes.rl +78 -0
  10. data/ext/redcloth_scan/redcloth_common.rl +113 -0
  11. data/ext/redcloth_scan/redcloth_inline.c +5102 -0
  12. data/ext/redcloth_scan/redcloth_inline.rl +282 -0
  13. data/ext/redcloth_scan/redcloth_scan.c +9300 -0
  14. data/ext/redcloth_scan/redcloth_scan.rl +523 -0
  15. data/extras/mingw-rbconfig.rb +176 -0
  16. data/extras/ragel_profiler.rb +73 -0
  17. data/lib/redcloth.rb +22 -1128
  18. data/lib/redcloth/formatters/base.rb +50 -0
  19. data/lib/redcloth/formatters/html.rb +342 -0
  20. data/lib/redcloth/formatters/latex.rb +227 -0
  21. data/lib/redcloth/formatters/latex_entities.yml +2414 -0
  22. data/lib/redcloth/textile_doc.rb +105 -0
  23. data/lib/redcloth/version.rb +18 -0
  24. data/test/basic.yml +794 -0
  25. data/test/code.yml +195 -0
  26. data/test/definitions.yml +71 -0
  27. data/test/extra_whitespace.yml +64 -0
  28. data/test/filter_html.yml +177 -0
  29. data/test/filter_pba.yml +12 -0
  30. data/test/helper.rb +108 -0
  31. data/test/html.yml +271 -0
  32. data/test/images.yml +202 -0
  33. data/{tests → test}/instiki.yml +14 -15
  34. data/test/links.yml +214 -0
  35. data/test/lists.yml +283 -0
  36. data/test/poignant.yml +89 -0
  37. data/test/sanitize_html.yml +42 -0
  38. data/test/table.yml +267 -0
  39. data/test/test_custom_tags.rb +46 -0
  40. data/test/test_extensions.rb +31 -0
  41. data/test/test_formatters.rb +15 -0
  42. data/test/test_parser.rb +68 -0
  43. data/test/test_restrictions.rb +41 -0
  44. data/test/textism.yml +480 -0
  45. data/test/threshold.yml +772 -0
  46. data/test/validate_fixtures.rb +73 -0
  47. metadata +94 -60
  48. data/doc/CHANGELOG +0 -160
  49. data/doc/COPYING +0 -25
  50. data/doc/README +0 -106
  51. data/doc/REFERENCE +0 -216
  52. data/doc/make.rb +0 -359
  53. data/run-tests.rb +0 -28
  54. data/setup.rb +0 -1376
  55. data/tests/code.yml +0 -105
  56. data/tests/hard_breaks.yml +0 -26
  57. data/tests/images.yml +0 -171
  58. data/tests/links.yml +0 -155
  59. data/tests/lists.yml +0 -77
  60. data/tests/markdown.yml +0 -218
  61. data/tests/poignant.yml +0 -64
  62. data/tests/table.yml +0 -198
  63. data/tests/textism.yml +0 -406
@@ -1,39 +1,38 @@
1
1
  --- # Bugs filed at http://www.instiki.org/show/BugReports
2
2
  in: |-
3
3
  _Hi, <span class="newWikiWord">Joe Bob<a href="../show/JoeBob">?</a></span>, this should all be in italic!_
4
- out: |-
4
+ html: |-
5
5
  <p><em>Hi, <span class="newWikiWord">Joe Bob<a href="../show/JoeBob">?</a></span>, this should all be in italic!</em></p>
6
6
  ---
7
7
  in: '*this <span>span</span> is strong*'
8
- out: '<p><strong>this <span>span</span> is strong</strong></p>'
8
+ html: '<p><strong>this <span>span</span> is strong</strong></p>'
9
9
  ---
10
10
  in: '*this <span>Camel Thing<a href="../show/CamelThing">?</a></span> is strong*'
11
- out: '<p><strong>this <span>Camel Thing<a href="../show/CamelThing">?</a></span> is strong</strong></p>'
11
+ html: '<p><strong>this <span>Camel Thing<a href="../show/CamelThing">?</a></span> is strong</strong></p>'
12
12
  ---
13
13
  in: '_this <span>span</span> is italic_'
14
- out: '<p><em>this <span>span</span> is italic</em></p>'
14
+ html: '<p><em>this <span>span</span> is italic</em></p>'
15
15
  ---
16
16
  in: '%{color:red}nested span because of <span><span class="newWikiWord">Camel Word<a href="../show/CamelWord">?</a></span></span>%'
17
- out: '<p><span style="color:red;">nested span because of <span><span class="newWikiWord">Camel Word<a href="../show/CamelWord">?</a></span></span></span></p>'
17
+ html: '<p><span style="color:red;">nested span because of <span><span class="newWikiWord">Camel Word<a href="../show/CamelWord">?</a></span></span></span></p>'
18
18
  ---
19
19
  in: |-
20
20
  h2. Version History
21
-
21
+
22
22
  * "Version
23
23
  0.0":http://www.threewordslong.com/render-0-8-9b.patch - Early version using MD5 hashes.
24
24
  * "Version
25
25
  0.1":http://www.threewordslong.com/chunk-0-1.patch.gz - First cut of new system. Much cleaner.
26
26
  * "Version 0.2":http://www.threewordslong.com/chunk-0-2.patch.gz - Fixed problem with "authors" page and some tests.
27
- out: |-
27
+ html: |-
28
28
  <h2>Version History</h2>
29
-
30
- <ul>
31
- <li><a href="http://www.threewordslong.com/render-0-8-9b.patch">Version
32
- 0.0</a> &#8211; Early version using <span class="caps">MD5</span> hashes.</li>
33
- <li><a href="http://www.threewordslong.com/chunk-0-1.patch.gz">Version
29
+ <ul>
30
+ <li><a href="http://www.threewordslong.com/render-0-8-9b.patch">Version<br />
31
+ 0.0</a> &#8211; Early version using MD5 hashes.</li>
32
+ <li><a href="http://www.threewordslong.com/chunk-0-1.patch.gz">Version<br />
34
33
  0.1</a> &#8211; First cut of new system. Much cleaner.</li>
35
- <li><a href="http://www.threewordslong.com/chunk-0-2.patch.gz">Version 0.2</a> &#8211; Fixed problem with &#8220;authors&#8221; page and some tests.</li>
36
- </ul>
34
+ <li><a href="http://www.threewordslong.com/chunk-0-2.patch.gz">Version 0.2</a> &#8211; Fixed problem with &#8220;authors&#8221; page and some tests.</li>
35
+ </ul>
37
36
  ---
38
37
  in: "--richSeymour --whyTheLuckyStiff"
39
- out: "<p>&#8212;richSeymour&#8212;whyTheLuckyStiff</p>"
38
+ html: "<p>&#8212;richSeymour &#8212;whyTheLuckyStiff</p>"
@@ -0,0 +1,214 @@
1
+ ---
2
+ in: '"link text":#1'
3
+ html: <p><a href="#1">link text</a></p>
4
+ ---
5
+ in: '"link text":#a'
6
+ html: <p><a href="#a">link text</a></p>
7
+ ---
8
+ in: '"link text":#a1'
9
+ html: <p><a href="#a1">link text</a></p>
10
+ ---
11
+ in: '"link text":#a10'
12
+ html: <p><a href="#a10">link text</a></p>
13
+ ---
14
+ in: '"link text":index.html'
15
+ html: <p><a href="index.html">link text</a></p>
16
+ ---
17
+ in: '"link text":index.html#1'
18
+ html: <p><a href="index.html#1">link text</a></p>
19
+ ---
20
+ in: '"link text":index.html#a'
21
+ html: <p><a href="index.html#a">link text</a></p>
22
+ ---
23
+ in: '"link text":index.html#a1'
24
+ html: <p><a href="index.html#a1">link text</a></p>
25
+ ---
26
+ in: '"link text":index.html#a10'
27
+ html: <p><a href="index.html#a10">link text</a></p>
28
+ ---
29
+ in: '"link text":http://example.com/'
30
+ html: <p><a href="http://example.com/">link text</a></p>
31
+ ---
32
+ in: '"link text":http://example.com/#1'
33
+ html: <p><a href="http://example.com/#1">link text</a></p>
34
+ ---
35
+ in: '"link text":http://example.com/#a'
36
+ html: <p><a href="http://example.com/#a">link text</a></p>
37
+ ---
38
+ in: '"link text":http://example.com/#a1'
39
+ html: <p><a href="http://example.com/#a1">link text</a></p>
40
+ ---
41
+ in: '"link text":http://example.com/#a10'
42
+ html: <p><a href="http://example.com/#a10">link text</a></p>
43
+ ---
44
+ in: '"link text":http://example.com/index.html'
45
+ html: <p><a href="http://example.com/index.html">link text</a></p>
46
+ ---
47
+ in: '"link text":http://example.com/index.html#a'
48
+ html: <p><a href="http://example.com/index.html#a">link text</a></p>
49
+ ---
50
+ in: '"link text":http://example.com/index.html#1'
51
+ html: <p><a href="http://example.com/index.html#1">link text</a></p>
52
+ ---
53
+ in: '"link text":http://example.com/index.html#a1'
54
+ html: <p><a href="http://example.com/index.html#a1">link text</a></p>
55
+ ---
56
+ in: '"link text":http://example.com/index.html#a10'
57
+ html: <p><a href="http://example.com/index.html#a10">link text</a></p>
58
+ ---
59
+ in: '"link text":http://example.com/?foo=bar'
60
+ html: <p><a href="http://example.com/?foo=bar">link text</a></p>
61
+ ---
62
+ in: '"link text":http://example.com/?foo=bar#a'
63
+ html: <p><a href="http://example.com/?foo=bar#a">link text</a></p>
64
+ ---
65
+ in: '"link & text":http://example.com/?foo=bar#a'
66
+ html: <p><a href="http://example.com/?foo=bar#a">link &amp; text</a></p>
67
+ ---
68
+ in: '"link text":http://example.com/?foo=bar#1'
69
+ html: <p><a href="http://example.com/?foo=bar#1">link text</a></p>
70
+ ---
71
+ in: '"link text":http://example.com/?foo=bar#a1'
72
+ html: <p><a href="http://example.com/?foo=bar#a1">link text</a></p>
73
+ ---
74
+ in: '"link text":http://example.com/?foo=bar#a10'
75
+ html: <p><a href="http://example.com/?foo=bar#a10">link text</a></p>
76
+ ---
77
+ in: '"link text":http://example.com/?foo=bar&a=b'
78
+ html: <p><a href="http://example.com/?foo=bar&#38;a=b">link text</a></p>
79
+ ---
80
+ in: '"link text":http://example.com/?foo=bar&a=b#1'
81
+ html: <p><a href="http://example.com/?foo=bar&#38;a=b#1">link text</a></p>
82
+ ---
83
+ in: '"link text":http://example.com/?foo=bar&a=b#a'
84
+ html: <p><a href="http://example.com/?foo=bar&#38;a=b#a">link text</a></p>
85
+ ---
86
+ in: '"link text":http://example.com/?foo=bar&a=b#a1'
87
+ html: <p><a href="http://example.com/?foo=bar&#38;a=b#a1">link text</a></p>
88
+ ---
89
+ in: '"link text":http://example.com/?foo=bar&a=b#a10'
90
+ html: <p><a href="http://example.com/?foo=bar&#38;a=b#a10">link text</a></p>
91
+ ---
92
+ in: 'This is a "link":http://example.com/'
93
+ html: <p>This is a <a href="http://example.com/">link</a></p>
94
+ ---
95
+ in: 'This is a "link":http://example.com/.'
96
+ html: <p>This is a <a href="http://example.com/">link</a>.</p>
97
+ ---
98
+ in: 'This is a "link":http://example.com/index.html.'
99
+ html: <p>This is a <a href="http://example.com/index.html">link</a>.</p>
100
+ ---
101
+ in: 'This is a "link":http://example.com/index.html#a.'
102
+ html: <p>This is a <a href="http://example.com/index.html#a">link</a>.</p>
103
+ ---
104
+ in: 'This is a "link":http://example.com/index.html#1.'
105
+ html: <p>This is a <a href="http://example.com/index.html#1">link</a>.</p>
106
+ ---
107
+ in: 'This is a "link":http://example.com/index.html#a1.'
108
+ html: <p>This is a <a href="http://example.com/index.html#a1">link</a>.</p>
109
+ ---
110
+ in: 'This is a "link":http://example.com/index.html#a10.'
111
+ html: <p>This is a <a href="http://example.com/index.html#a10">link</a>.</p>
112
+ ---
113
+ in: 'This is a "link":http://example.com/?foo=bar.'
114
+ html: <p>This is a <a href="http://example.com/?foo=bar">link</a>.</p>
115
+ ---
116
+ in: 'This is a "link":http://example.com/?foo=bar#1.'
117
+ html: <p>This is a <a href="http://example.com/?foo=bar#1">link</a>.</p>
118
+ ---
119
+ in: 'This is a "link":http://example.com/?foo=bar#a.'
120
+ html: <p>This is a <a href="http://example.com/?foo=bar#a">link</a>.</p>
121
+ ---
122
+ in: 'This is a "link":http://example.com/?foo=bar#a1.'
123
+ html: <p>This is a <a href="http://example.com/?foo=bar#a1">link</a>.</p>
124
+ ---
125
+ in: 'This is a "link":http://example.com/?foo=bar#a10.'
126
+ html: <p>This is a <a href="http://example.com/?foo=bar#a10">link</a>.</p>
127
+ ---
128
+ in: 'This is a "link":http://example.com/?foo=bar#a10, but this is not.'
129
+ html: <p>This is a <a href="http://example.com/?foo=bar#a10">link</a>, but this is not.</p>
130
+ ---
131
+ in: '(This is a "link":http://example.com/?foo=bar#a10) but this is not.'
132
+ html: <p>(This is a <a href="http://example.com/?foo=bar#a10">link</a>) but this is not.</p>
133
+ ---
134
+ in: '"link text(link title)":http://example.com/'
135
+ html: <p><a href="http://example.com/" title="link title">link text</a></p>
136
+ # ---
137
+ # in: '"link text(link title) ":http://example.com/'
138
+ # html: <p>&#8220;link text(link title) &#8220;:http://example.com/</p>
139
+ # comments: this is a real test and should pass
140
+ ---
141
+ name: link with title attribute
142
+ in: '"(link) text(link title)":http://example.com/'
143
+ html: <p><a href="http://example.com/" class="link" title="link title">text</a></p>
144
+ comments: link text can not contain parentheses
145
+ ---
146
+ name: link with space between link text and title attribute
147
+ in: '"text (link title)":http://example.com/'
148
+ html: <p><a href="http://example.com/" title="link title">text</a></p>
149
+ ---
150
+ in: '"Dive Into XML":http://www.xml.com/pub/au/164'
151
+ html: <p><a href="http://www.xml.com/pub/au/164">Dive Into <span class="caps">XML</span></a></p>
152
+ ---
153
+ in: '"Lab Exercises":../lab/exercises/exercises.html.'
154
+ html: <p><a href="../lab/exercises/exercises.html">Lab Exercises</a>.</p>
155
+ ---
156
+ in: 'Go to "discuss":http://www.dreammoods.com/cgibin/cutecast/cutecast.pl?forum=1&thread=26627 to discuss.'
157
+ html: <p>Go to <a href="http://www.dreammoods.com/cgibin/cutecast/cutecast.pl?forum=1&#38;thread=26627">discuss</a> to discuss.</p>
158
+ ---
159
+ in: '* "rubylang":http://www.ruby-lang.org/en/'
160
+ html: "<ul>\n\t<li><a href=\"http://www.ruby-lang.org/en/\">rubylang</a></li>\n</ul>"
161
+ ---
162
+ in: 'The ION coding style document found at "IONCodingStyleGuide.doc":http://perforce:8081/@md=d&cd=//&c=82E@//depot/systest/system/main/pub/doc/IONCodingStyleGuide.doc?ac=22 codifies a couple of rules to ensure reasonably consistent code and documentation of libraries in ION. Test text'
163
+ html: <p>The <span class="caps">ION</span> coding style document found at <a href="http://perforce:8081/@md=d&#38;cd=//&#38;c=82E@//depot/systest/system/main/pub/doc/IONCodingStyleGuide.doc?ac=22">IONCodingStyleGuide.doc</a> codifies a couple of rules to ensure reasonably consistent code and documentation of libraries in <span class="caps">ION</span>. Test text</p>
164
+ ---
165
+ in: '"testing":'
166
+ html: "<p>&#8220;testing&#8221;:</p>"
167
+ ---
168
+ name: trailing space not absorbed by link
169
+ in: '"Link":/foo.html me'
170
+ html: "<p><a href=\"/foo.html\">Link</a> me</p>"
171
+ ---
172
+ name: trailing comma stays outside link
173
+ in: '"Link":/foo.html, me'
174
+ html: "<p><a href=\"/foo.html\">Link</a>, me</p>"
175
+ ---
176
+ name: trailing exclamation stays outside link
177
+ in: '"Link":/foo.html! me'
178
+ html: "<p><a href=\"/foo.html\">Link</a>! me</p>"
179
+ ---
180
+ name: trailing semicolon stays outside link
181
+ in: '"Link":/foo.html; me'
182
+ html: "<p><a href=\"/foo.html\">Link</a>; me</p>"
183
+ ---
184
+ name: trailing period stays outside link
185
+ in: '"Link":/foo.html.'
186
+ html: "<p><a href=\"/foo.html\">Link</a>.</p>"
187
+ ---
188
+ name: parenthetical statement as a link
189
+ in: '"(just in case you were wondering)":http://slashdot.org/'
190
+ html: '<p><a href="http://slashdot.org/">(just in case you were wondering)</a></p>'
191
+ ---
192
+ name: link containing parentheses
193
+ in: '"It is (very) fortunate that this works":http://slashdot.org/'
194
+ html: '<p><a href="http://slashdot.org/">It is (very) fortunate that this works</a></p>'
195
+ ---
196
+ name: link containing quotes
197
+ in: '"He said it is "very unlikely" this works":http://slashdot.org/'
198
+ html: '<p><a href="http://slashdot.org/">He said it is &#8220;very unlikely&#8221; this works</a></p>'
199
+ ---
200
+ name: linked quoted phrase
201
+ in: '""Open the pod bay doors please, HAL."":http://www.youtube.com/watch?v=npN9l2Bd06s'
202
+ html: '<p><a href="http://www.youtube.com/watch?v=npN9l2Bd06s">&#8220;Open the pod bay doors please, <span class="caps">HAL</span>.&#8221;</a></p>'
203
+ ---
204
+ name: links containing underscores
205
+ in: 'This is a link to a "Wikipedia article about Barack":http://en.wikipedia.org/wiki/Barack_Obama'
206
+ html: '<p>This is a link to a <a href="http://en.wikipedia.org/wiki/Barack_Obama">Wikipedia article about Barack</a></p>'
207
+ ---
208
+ name: links containing parentheses
209
+ in: 'This is a link to a ["Wikipedia article about Textile":http://en.wikipedia.org/wiki/Textile_(markup_language)]'
210
+ html: '<p>This is a link to a <a href="http://en.wikipedia.org/wiki/Textile_(markup_language)">Wikipedia article about Textile</a></p>'
211
+ ---
212
+ name: links contained in parentheses
213
+ in: 'This is a regular link (but in parentheses: "Google":http://www.google.com)'
214
+ html: '<p>This is a regular link (but in parentheses: <a href="http://www.google.com">Google</a>)</p>'
@@ -0,0 +1,283 @@
1
+ ---
2
+ name: code in bullet list
3
+ in: "* command run: @time ruby run-tests.rb > toto@"
4
+ html: "<ul>\n\t<li>command run: <code>time ruby run-tests.rb &gt; toto</code></li>\n</ul>"
5
+ --- # Bret Pettichord, Thanks.
6
+ name: hard break in list
7
+ in: |-
8
+ * first line
9
+ * second
10
+ line
11
+ * third line
12
+ html: |-
13
+ <ul>
14
+ <li>first line</li>
15
+ <li>second<br />
16
+ line</li>
17
+ <li>third line</li>
18
+ </ul>
19
+ ---
20
+ name: mixed nesting
21
+ in: |-
22
+ * bullet
23
+ *# number
24
+ *# number
25
+ *#* bullet
26
+ *# number
27
+ *# number with
28
+ a break
29
+ * bullet
30
+ ** okay
31
+ html: |-
32
+ <ul>
33
+ <li>bullet
34
+ <ol>
35
+ <li>number</li>
36
+ <li>number
37
+ <ul>
38
+ <li>bullet</li>
39
+ </ul></li>
40
+ <li>number</li>
41
+ <li>number with<br />
42
+ a break</li>
43
+ </ol></li>
44
+ <li>bullet
45
+ <ul>
46
+ <li>okay</li>
47
+ </ul></li>
48
+ </ul>
49
+ ---
50
+ name: list continuation
51
+ in: |-
52
+ # one
53
+ # two
54
+ # three
55
+
56
+ # one
57
+ # two
58
+ # three
59
+
60
+ #_ four
61
+ # five
62
+ # six
63
+ html: |-
64
+ <ol>
65
+ <li>one</li>
66
+ <li>two</li>
67
+ <li>three</li>
68
+ </ol>
69
+ <ol>
70
+ <li>one</li>
71
+ <li>two</li>
72
+ <li>three</li>
73
+ </ol>
74
+ <ol start="4">
75
+ <li>four</li>
76
+ <li>five</li>
77
+ <li>six</li>
78
+ </ol>
79
+ valid_html: false
80
+ comment: there's not a good, valid alternative to the start attribute
81
+ ---
82
+ name: continue after break
83
+ in: |-
84
+ # one
85
+ # two
86
+ # three
87
+
88
+ test
89
+
90
+ #_ four
91
+ # five
92
+ # six
93
+
94
+ test
95
+
96
+ #_ seven
97
+ # eight
98
+ # nine
99
+ html: |-
100
+ <ol>
101
+ <li>one</li>
102
+ <li>two</li>
103
+ <li>three</li>
104
+ </ol>
105
+ <p>test</p>
106
+ <ol start="4">
107
+ <li>four</li>
108
+ <li>five</li>
109
+ <li>six</li>
110
+ </ol>
111
+ <p>test</p>
112
+ <ol start="7">
113
+ <li>seven</li>
114
+ <li>eight</li>
115
+ <li>nine</li>
116
+ </ol>
117
+ valid_html: false
118
+ comment: there's not a good, valid alternative to the start attribute
119
+ ---
120
+ name: continue list when prior list contained nested list
121
+ in: |-
122
+ # one
123
+ # two
124
+ # three
125
+
126
+ #_ four
127
+ # five
128
+ ## sub-note
129
+ ## another sub-note
130
+ # six
131
+
132
+ #_ seven
133
+ # eight
134
+ # nine
135
+ html: |-
136
+ <ol>
137
+ <li>one</li>
138
+ <li>two</li>
139
+ <li>three</li>
140
+ </ol>
141
+ <ol start="4">
142
+ <li>four</li>
143
+ <li>five
144
+ <ol>
145
+ <li>sub-note</li>
146
+ <li>another sub-note</li>
147
+ </ol></li>
148
+ <li>six</li>
149
+ </ol>
150
+ <ol start="7">
151
+ <li>seven</li>
152
+ <li>eight</li>
153
+ <li>nine</li>
154
+ </ol>
155
+ valid_html: false
156
+ comment: there's not a good, valid alternative to the start attribute
157
+ ---
158
+ name: list start number
159
+ in: |-
160
+ #293 two ninety three
161
+ # two ninety four
162
+ # two ninety five
163
+
164
+ #9 nine
165
+ # ten
166
+ # eleven
167
+ html: |-
168
+ <ol start="293">
169
+ <li>two ninety three</li>
170
+ <li>two ninety four</li>
171
+ <li>two ninety five</li>
172
+ </ol>
173
+ <ol start="9">
174
+ <li>nine</li>
175
+ <li>ten</li>
176
+ <li>eleven</li>
177
+ </ol>
178
+ valid_html: false
179
+ comment: there's not a good, valid alternative to the start attribute
180
+ ---
181
+ name: continue list after started list
182
+ in: |-
183
+ #9 nine
184
+ # ten
185
+ # eleven
186
+
187
+ #_ twelve
188
+ # thirteen
189
+ # fourteen
190
+ html: |-
191
+ <ol start="9">
192
+ <li>nine</li>
193
+ <li>ten</li>
194
+ <li>eleven</li>
195
+ </ol>
196
+ <ol start="12">
197
+ <li>twelve</li>
198
+ <li>thirteen</li>
199
+ <li>fourteen</li>
200
+ </ol>
201
+ valid_html: false
202
+ comment: there's not a good, valid alternative to the start attribute
203
+ ---
204
+ name: end notes
205
+ in: |-
206
+ h2. End Notes
207
+
208
+ # End Notes should be a numbered list
209
+ # Like this
210
+ # They must have anchors in the text
211
+
212
+ h2. See Also
213
+
214
+ * See Also notes should be bullets
215
+ * Like this
216
+
217
+ html: |-
218
+ <h2>End Notes</h2>
219
+ <ol>
220
+ <li>End Notes should be a numbered list</li>
221
+ <li>Like this</li>
222
+ <li>They must have anchors in the text</li>
223
+ </ol>
224
+ <h2>See Also</h2>
225
+ <ul>
226
+ <li>See Also notes should be bullets</li>
227
+ <li>Like this</li>
228
+ </ul>
229
+ ---
230
+ name: ordered list immediately following paragraph
231
+ desc: Normally a paragraph and a list that follows it should be separated by two newlines. Textile-2.0.0 recognizes the list even when separated by only one newline, but creates invalid XHTML by placing the list inside the paragraph. RedCloth recognizes the pattern for backward compatibility, but creates valid XHTML.
232
+ in: |-
233
+ A simple example.
234
+ # One
235
+ # Two
236
+ html: |-
237
+ <p>A simple example.</p>
238
+ <ol>
239
+ <li>One</li>
240
+ <li>Two</li>
241
+ </ol>
242
+ ---
243
+ name: unordered list immediately following paragraph
244
+ in: |-
245
+ A simple example.
246
+ * One
247
+ * Two
248
+ html: |-
249
+ <p>A simple example.</p>
250
+ <ul>
251
+ <li>One</li>
252
+ <li>Two</li>
253
+ </ul>
254
+ ---
255
+ name: ordered list immediately following extended block
256
+ in: |-
257
+ div.. Here it comes.
258
+
259
+ A simple example.
260
+ # One
261
+ # Two
262
+ html: |-
263
+ <div>Here it comes.</div>
264
+ <div>A simple example.</div>
265
+ <ol>
266
+ <li>One</li>
267
+ <li>Two</li>
268
+ </ol>
269
+ ---
270
+ name: unordered list immediately following extended block
271
+ in: |-
272
+ div.. Here it comes.
273
+
274
+ A simple example.
275
+ * One
276
+ * Two
277
+ html: |-
278
+ <div>Here it comes.</div>
279
+ <div>A simple example.</div>
280
+ <ul>
281
+ <li>One</li>
282
+ <li>Two</li>
283
+ </ul>