greenmat 3.2.0.1 → 3.2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +14 -0
  5. data/CHANGELOG.md +15 -0
  6. data/greenmat.gemspec +3 -47
  7. data/lib/greenmat/cli.rb +86 -0
  8. data/lib/greenmat/version.rb +3 -0
  9. data/spec/greenmat/markdown_spec.rb +65 -0
  10. data/spec/spec_helper.rb +90 -0
  11. data/tasks/generate_xcode_project.rake +5 -0
  12. data/tasks/greenmat.rake +65 -0
  13. data/tasks/spec.rake +5 -0
  14. data/test/MarkdownTest_1.0.3/MarkdownTest.pl +181 -0
  15. data/test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.html +17 -0
  16. data/test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.text +21 -0
  17. data/test/MarkdownTest_1.0.3/Tests/Auto links.html +18 -0
  18. data/test/MarkdownTest_1.0.3/Tests/Auto links.text +13 -0
  19. data/test/MarkdownTest_1.0.3/Tests/Backslash escapes.html +118 -0
  20. data/test/MarkdownTest_1.0.3/Tests/Backslash escapes.text +120 -0
  21. data/test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.html +15 -0
  22. data/test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.text +11 -0
  23. data/test/MarkdownTest_1.0.3/Tests/Code Blocks.html +18 -0
  24. data/test/MarkdownTest_1.0.3/Tests/Code Blocks.text +14 -0
  25. data/test/MarkdownTest_1.0.3/Tests/Code Spans.html +6 -0
  26. data/test/MarkdownTest_1.0.3/Tests/Code Spans.text +6 -0
  27. data/test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.html +8 -0
  28. data/test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.text +8 -0
  29. data/test/MarkdownTest_1.0.3/Tests/Horizontal rules.html +71 -0
  30. data/test/MarkdownTest_1.0.3/Tests/Horizontal rules.text +67 -0
  31. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).html +15 -0
  32. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).text +15 -0
  33. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).html +72 -0
  34. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).text +69 -0
  35. data/test/MarkdownTest_1.0.3/Tests/Inline HTML comments.html +13 -0
  36. data/test/MarkdownTest_1.0.3/Tests/Inline HTML comments.text +13 -0
  37. data/test/MarkdownTest_1.0.3/Tests/Links, inline style.html +11 -0
  38. data/test/MarkdownTest_1.0.3/Tests/Links, inline style.text +12 -0
  39. data/test/MarkdownTest_1.0.3/Tests/Links, reference style.html +52 -0
  40. data/test/MarkdownTest_1.0.3/Tests/Links, reference style.text +71 -0
  41. data/test/MarkdownTest_1.0.3/Tests/Links, shortcut references.html +9 -0
  42. data/test/MarkdownTest_1.0.3/Tests/Links, shortcut references.text +20 -0
  43. data/test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.html +3 -0
  44. data/test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.text +7 -0
  45. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.html +314 -0
  46. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.text +306 -0
  47. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.html +942 -0
  48. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.text +888 -0
  49. data/test/MarkdownTest_1.0.3/Tests/Nested blockquotes.html +9 -0
  50. data/test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text +5 -0
  51. data/test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.html +148 -0
  52. data/test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.text +131 -0
  53. data/test/MarkdownTest_1.0.3/Tests/Strong and em together.html +7 -0
  54. data/test/MarkdownTest_1.0.3/Tests/Strong and em together.text +7 -0
  55. data/test/MarkdownTest_1.0.3/Tests/Tabs.html +25 -0
  56. data/test/MarkdownTest_1.0.3/Tests/Tabs.text +21 -0
  57. data/test/MarkdownTest_1.0.3/Tests/Tidyness.html +8 -0
  58. data/test/MarkdownTest_1.0.3/Tests/Tidyness.text +5 -0
  59. data/test/MarkdownTest_1.0/MarkdownTest.pl +162 -0
  60. data/test/MarkdownTest_1.0/Tests/Amps and angle encoding.html +17 -0
  61. data/test/MarkdownTest_1.0/Tests/Amps and angle encoding.text +21 -0
  62. data/test/MarkdownTest_1.0/Tests/Auto links.html +18 -0
  63. data/test/MarkdownTest_1.0/Tests/Auto links.text +13 -0
  64. data/test/MarkdownTest_1.0/Tests/Backslash escapes.html +102 -0
  65. data/test/MarkdownTest_1.0/Tests/Backslash escapes.text +104 -0
  66. data/test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html +15 -0
  67. data/test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text +11 -0
  68. data/test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html +8 -0
  69. data/test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text +8 -0
  70. data/test/MarkdownTest_1.0/Tests/Horizontal rules.html +71 -0
  71. data/test/MarkdownTest_1.0/Tests/Horizontal rules.text +67 -0
  72. data/test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html +14 -0
  73. data/test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text +14 -0
  74. data/test/MarkdownTest_1.0/Tests/Inline HTML (Simple).html +72 -0
  75. data/test/MarkdownTest_1.0/Tests/Inline HTML (Simple).text +69 -0
  76. data/test/MarkdownTest_1.0/Tests/Inline HTML comments.html +13 -0
  77. data/test/MarkdownTest_1.0/Tests/Inline HTML comments.text +13 -0
  78. data/test/MarkdownTest_1.0/Tests/Links, inline style.html +9 -0
  79. data/test/MarkdownTest_1.0/Tests/Links, inline style.text +9 -0
  80. data/test/MarkdownTest_1.0/Tests/Links, reference style.html +18 -0
  81. data/test/MarkdownTest_1.0/Tests/Links, reference style.text +31 -0
  82. data/test/MarkdownTest_1.0/Tests/Literal quotes in titles.html +3 -0
  83. data/test/MarkdownTest_1.0/Tests/Literal quotes in titles.text +7 -0
  84. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html +314 -0
  85. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text +306 -0
  86. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html +942 -0
  87. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text +888 -0
  88. data/test/MarkdownTest_1.0/Tests/Nested blockquotes.html +9 -0
  89. data/test/MarkdownTest_1.0/Tests/Nested blockquotes.text +5 -0
  90. data/test/MarkdownTest_1.0/Tests/Ordered and unordered lists.html +137 -0
  91. data/test/MarkdownTest_1.0/Tests/Ordered and unordered lists.text +122 -0
  92. data/test/MarkdownTest_1.0/Tests/Strong and em together.html +7 -0
  93. data/test/MarkdownTest_1.0/Tests/Strong and em together.text +7 -0
  94. data/test/MarkdownTest_1.0/Tests/Tabs.html +25 -0
  95. data/test/MarkdownTest_1.0/Tests/Tabs.text +21 -0
  96. data/test/MarkdownTest_1.0/Tests/Tidyness.html +8 -0
  97. data/test/MarkdownTest_1.0/Tests/Tidyness.text +5 -0
  98. data/test/fixtures/benchmark.md +232 -0
  99. data/test/greenmat_bin_test.rb +80 -0
  100. metadata +186 -1
@@ -0,0 +1,80 @@
1
+ require 'test_helper'
2
+ require 'tempfile'
3
+
4
+ class GreenmatBinTest < Greenmat::TestCase
5
+ def setup
6
+ @fixture_file = Tempfile.new('bin')
7
+ @fixture_path = @fixture_file.path
8
+
9
+ @fixture_file.write "A ==simple== fixture file -- with " \
10
+ "a [link](https://github.com)."
11
+ @fixture_file.rewind
12
+ end
13
+
14
+ def teardown
15
+ @fixture_file.unlink
16
+ end
17
+
18
+ def test_vanilla_bin
19
+ run_bin(@fixture_path)
20
+
21
+ expected = "<p>A ==simple== fixture file -- with " \
22
+ "a <a href=\"https://github.com\">link</a>.</p>\n"
23
+
24
+ assert_equal expected, @output
25
+ end
26
+
27
+ def test_enabling_a_parse_option
28
+ run_bin("--parse", "highlight", @fixture_path)
29
+
30
+ assert_output "<mark>"
31
+ refute_output "=="
32
+ end
33
+
34
+ def test_enabling_a_render_option
35
+ run_bin("--render", "no-links", @fixture_path)
36
+
37
+ assert_output "[link]"
38
+ refute_output "</a>"
39
+ end
40
+
41
+ def test_enabling_smarty_pants
42
+ run_bin("--smarty", @fixture_path)
43
+
44
+ assert_output "&ndash"
45
+ refute_output "--"
46
+ end
47
+
48
+ def test_version_option
49
+ run_bin("--version")
50
+ assert_output "Greenmat #{Greenmat::VERSION}"
51
+ end
52
+
53
+ def test_legacy_option_parsing
54
+ run_bin("--parse-highlight", "--render-no-links", @fixture_path)
55
+
56
+ assert_output "<mark>"
57
+ refute_output "=="
58
+
59
+ assert_output "[link]"
60
+ refute_output "</a>"
61
+ end
62
+
63
+ private
64
+
65
+ def run_bin(*args)
66
+ bin_path = File.expand_path('../../bin/greenmat', __FILE__)
67
+
68
+ IO.popen("#{bin_path} #{args.join(" ")}") do |stream|
69
+ @output = stream.read
70
+ end
71
+ end
72
+
73
+ def assert_output(pattern)
74
+ assert_match pattern, @output
75
+ end
76
+
77
+ def refute_output(pattern)
78
+ refute_match Regexp.new(pattern), @output
79
+ end
80
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: greenmat
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.1
4
+ version: 3.2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Natacha Porté
@@ -76,6 +76,10 @@ extensions:
76
76
  extra_rdoc_files:
77
77
  - COPYING
78
78
  files:
79
+ - ".gitignore"
80
+ - ".rspec"
81
+ - ".travis.yml"
82
+ - CHANGELOG.md
79
83
  - COPYING
80
84
  - Gemfile
81
85
  - README.md
@@ -102,11 +106,104 @@ files:
102
106
  - ext/greenmat/stack.h
103
107
  - greenmat.gemspec
104
108
  - lib/greenmat.rb
109
+ - lib/greenmat/cli.rb
105
110
  - lib/greenmat/compat.rb
106
111
  - lib/greenmat/render_man.rb
107
112
  - lib/greenmat/render_strip.rb
113
+ - lib/greenmat/version.rb
114
+ - spec/greenmat/markdown_spec.rb
115
+ - spec/spec_helper.rb
116
+ - tasks/generate_xcode_project.rake
117
+ - tasks/greenmat.rake
118
+ - tasks/spec.rake
119
+ - test/MarkdownTest_1.0.3/MarkdownTest.pl
120
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.html
121
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.text
122
+ - test/MarkdownTest_1.0.3/Tests/Auto links.html
123
+ - test/MarkdownTest_1.0.3/Tests/Auto links.text
124
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.html
125
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.text
126
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.html
127
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.text
128
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.html
129
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.text
130
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.html
131
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.text
132
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.html
133
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.text
134
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.html
135
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.text
136
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).html
137
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).text
138
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).html
139
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).text
140
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.html
141
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.text
142
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.html
143
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.text
144
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.html
145
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.text
146
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.html
147
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.text
148
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.html
149
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.text
150
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.html
151
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.text
152
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.html
153
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.text
154
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.html
155
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text
156
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.html
157
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.text
158
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.html
159
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.text
160
+ - test/MarkdownTest_1.0.3/Tests/Tabs.html
161
+ - test/MarkdownTest_1.0.3/Tests/Tabs.text
162
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.html
163
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.text
164
+ - test/MarkdownTest_1.0/MarkdownTest.pl
165
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.html
166
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.text
167
+ - test/MarkdownTest_1.0/Tests/Auto links.html
168
+ - test/MarkdownTest_1.0/Tests/Auto links.text
169
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.html
170
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.text
171
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html
172
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text
173
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html
174
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text
175
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.html
176
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.text
177
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html
178
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text
179
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).html
180
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).text
181
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.html
182
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.text
183
+ - test/MarkdownTest_1.0/Tests/Links, inline style.html
184
+ - test/MarkdownTest_1.0/Tests/Links, inline style.text
185
+ - test/MarkdownTest_1.0/Tests/Links, reference style.html
186
+ - test/MarkdownTest_1.0/Tests/Links, reference style.text
187
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.html
188
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.text
189
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html
190
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text
191
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html
192
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text
193
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.html
194
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.text
195
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.html
196
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.text
197
+ - test/MarkdownTest_1.0/Tests/Strong and em together.html
198
+ - test/MarkdownTest_1.0/Tests/Strong and em together.text
199
+ - test/MarkdownTest_1.0/Tests/Tabs.html
200
+ - test/MarkdownTest_1.0/Tests/Tabs.text
201
+ - test/MarkdownTest_1.0/Tests/Tidyness.html
202
+ - test/MarkdownTest_1.0/Tests/Tidyness.text
108
203
  - test/benchmark.rb
109
204
  - test/custom_render_test.rb
205
+ - test/fixtures/benchmark.md
206
+ - test/greenmat_bin_test.rb
110
207
  - test/greenmat_compat_test.rb
111
208
  - test/html5_test.rb
112
209
  - test/html_render_test.rb
@@ -143,8 +240,96 @@ signing_key:
143
240
  specification_version: 4
144
241
  summary: A Markdown parser for Qiita, based on Redcarpet.
145
242
  test_files:
243
+ - spec/greenmat/markdown_spec.rb
244
+ - spec/spec_helper.rb
245
+ - test/MarkdownTest_1.0.3/MarkdownTest.pl
246
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.html
247
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.text
248
+ - test/MarkdownTest_1.0.3/Tests/Auto links.html
249
+ - test/MarkdownTest_1.0.3/Tests/Auto links.text
250
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.html
251
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.text
252
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.html
253
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.text
254
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.html
255
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.text
256
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.html
257
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.text
258
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.html
259
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.text
260
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.html
261
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.text
262
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).html
263
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).text
264
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).html
265
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).text
266
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.html
267
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.text
268
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.html
269
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.text
270
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.html
271
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.text
272
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.html
273
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.text
274
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.html
275
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.text
276
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.html
277
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.text
278
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.html
279
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.text
280
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.html
281
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text
282
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.html
283
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.text
284
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.html
285
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.text
286
+ - test/MarkdownTest_1.0.3/Tests/Tabs.html
287
+ - test/MarkdownTest_1.0.3/Tests/Tabs.text
288
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.html
289
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.text
290
+ - test/MarkdownTest_1.0/MarkdownTest.pl
291
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.html
292
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.text
293
+ - test/MarkdownTest_1.0/Tests/Auto links.html
294
+ - test/MarkdownTest_1.0/Tests/Auto links.text
295
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.html
296
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.text
297
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html
298
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text
299
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html
300
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text
301
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.html
302
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.text
303
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html
304
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text
305
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).html
306
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).text
307
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.html
308
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.text
309
+ - test/MarkdownTest_1.0/Tests/Links, inline style.html
310
+ - test/MarkdownTest_1.0/Tests/Links, inline style.text
311
+ - test/MarkdownTest_1.0/Tests/Links, reference style.html
312
+ - test/MarkdownTest_1.0/Tests/Links, reference style.text
313
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.html
314
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.text
315
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html
316
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text
317
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html
318
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text
319
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.html
320
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.text
321
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.html
322
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.text
323
+ - test/MarkdownTest_1.0/Tests/Strong and em together.html
324
+ - test/MarkdownTest_1.0/Tests/Strong and em together.text
325
+ - test/MarkdownTest_1.0/Tests/Tabs.html
326
+ - test/MarkdownTest_1.0/Tests/Tabs.text
327
+ - test/MarkdownTest_1.0/Tests/Tidyness.html
328
+ - test/MarkdownTest_1.0/Tests/Tidyness.text
146
329
  - test/benchmark.rb
147
330
  - test/custom_render_test.rb
331
+ - test/fixtures/benchmark.md
332
+ - test/greenmat_bin_test.rb
148
333
  - test/greenmat_compat_test.rb
149
334
  - test/html5_test.rb
150
335
  - test/html_render_test.rb