bluecloth 2.0.6.pre120-x86-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +363 -0
- data/LICENSE +27 -0
- data/LICENSE.discount +47 -0
- data/README +81 -0
- data/Rakefile +349 -0
- data/Rakefile.local +43 -0
- data/bin/bluecloth +84 -0
- data/ext/Csio.c +61 -0
- data/ext/VERSION +1 -0
- data/ext/amalloc.h +29 -0
- data/ext/bluecloth.c +391 -0
- data/ext/bluecloth.h +19 -0
- data/ext/config.h +55 -0
- data/ext/css.c +76 -0
- data/ext/cstring.h +75 -0
- data/ext/docheader.c +43 -0
- data/ext/extconf.rb +52 -0
- data/ext/generate.c +1602 -0
- data/ext/markdown.c +1078 -0
- data/ext/markdown.h +146 -0
- data/ext/mkdio.c +303 -0
- data/ext/mkdio.h +79 -0
- data/ext/resource.c +155 -0
- data/ext/version.c +28 -0
- data/ext/xml.c +82 -0
- data/ext/xmlpage.c +48 -0
- data/lib/1.8/bluecloth_ext.so +0 -0
- data/lib/1.9/bluecloth_ext.so +0 -0
- data/lib/bluecloth.rb +164 -0
- data/rake/191_compat.rb +26 -0
- data/rake/dependencies.rb +76 -0
- data/rake/helpers.rb +434 -0
- data/rake/hg.rb +273 -0
- data/rake/manual.rb +782 -0
- data/rake/packaging.rb +126 -0
- data/rake/publishing.rb +269 -0
- data/rake/rdoc.rb +30 -0
- data/rake/style.rb +62 -0
- data/rake/svn.rb +668 -0
- data/rake/testing.rb +187 -0
- data/rake/verifytask.rb +64 -0
- data/rake/win32.rb +190 -0
- data/spec/bluecloth/101_changes_spec.rb +141 -0
- data/spec/bluecloth/autolinks_spec.rb +49 -0
- data/spec/bluecloth/blockquotes_spec.rb +145 -0
- data/spec/bluecloth/code_spans_spec.rb +164 -0
- data/spec/bluecloth/emphasis_spec.rb +164 -0
- data/spec/bluecloth/entities_spec.rb +65 -0
- data/spec/bluecloth/hrules_spec.rb +90 -0
- data/spec/bluecloth/images_spec.rb +92 -0
- data/spec/bluecloth/inline_html_spec.rb +238 -0
- data/spec/bluecloth/links_spec.rb +171 -0
- data/spec/bluecloth/lists_spec.rb +294 -0
- data/spec/bluecloth/paragraphs_spec.rb +75 -0
- data/spec/bluecloth/titles_spec.rb +305 -0
- data/spec/bluecloth_spec.rb +281 -0
- data/spec/bugfix_spec.rb +172 -0
- data/spec/contributions_spec.rb +85 -0
- data/spec/data/antsugar.txt +34 -0
- data/spec/data/markdowntest/Amps and angle encoding.html +17 -0
- data/spec/data/markdowntest/Amps and angle encoding.text +21 -0
- data/spec/data/markdowntest/Auto links.html +18 -0
- data/spec/data/markdowntest/Auto links.text +13 -0
- data/spec/data/markdowntest/Backslash escapes.html +118 -0
- data/spec/data/markdowntest/Backslash escapes.text +120 -0
- data/spec/data/markdowntest/Blockquotes with code blocks.html +15 -0
- data/spec/data/markdowntest/Blockquotes with code blocks.text +11 -0
- data/spec/data/markdowntest/Code Blocks.html +18 -0
- data/spec/data/markdowntest/Code Blocks.text +14 -0
- data/spec/data/markdowntest/Code Spans.html +5 -0
- data/spec/data/markdowntest/Code Spans.text +5 -0
- data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.html +8 -0
- data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.text +8 -0
- data/spec/data/markdowntest/Horizontal rules.html +71 -0
- data/spec/data/markdowntest/Horizontal rules.text +67 -0
- data/spec/data/markdowntest/Inline HTML (Advanced).html +15 -0
- data/spec/data/markdowntest/Inline HTML (Advanced).text +15 -0
- data/spec/data/markdowntest/Inline HTML (Simple).html +72 -0
- data/spec/data/markdowntest/Inline HTML (Simple).text +69 -0
- data/spec/data/markdowntest/Inline HTML comments.html +13 -0
- data/spec/data/markdowntest/Inline HTML comments.text +13 -0
- data/spec/data/markdowntest/Links, inline style.html +11 -0
- data/spec/data/markdowntest/Links, inline style.text +12 -0
- data/spec/data/markdowntest/Links, reference style.html +52 -0
- data/spec/data/markdowntest/Links, reference style.text +71 -0
- data/spec/data/markdowntest/Links, shortcut references.html +9 -0
- data/spec/data/markdowntest/Links, shortcut references.text +20 -0
- data/spec/data/markdowntest/Literal quotes in titles.html +3 -0
- data/spec/data/markdowntest/Literal quotes in titles.text +7 -0
- data/spec/data/markdowntest/Markdown Documentation - Basics.html +314 -0
- data/spec/data/markdowntest/Markdown Documentation - Basics.text +306 -0
- data/spec/data/markdowntest/Markdown Documentation - Syntax.html +942 -0
- data/spec/data/markdowntest/Markdown Documentation - Syntax.text +888 -0
- data/spec/data/markdowntest/Nested blockquotes.html +9 -0
- data/spec/data/markdowntest/Nested blockquotes.text +5 -0
- data/spec/data/markdowntest/Ordered and unordered lists.html +148 -0
- data/spec/data/markdowntest/Ordered and unordered lists.text +131 -0
- data/spec/data/markdowntest/Strong and em together.html +7 -0
- data/spec/data/markdowntest/Strong and em together.text +7 -0
- data/spec/data/markdowntest/Tabs.html +25 -0
- data/spec/data/markdowntest/Tabs.text +21 -0
- data/spec/data/markdowntest/Tidyness.html +8 -0
- data/spec/data/markdowntest/Tidyness.text +5 -0
- data/spec/data/ml-announce.txt +17 -0
- data/spec/data/re-overflow.txt +67 -0
- data/spec/data/re-overflow2.txt +281 -0
- data/spec/discount_spec.rb +184 -0
- data/spec/lib/constants.rb +5 -0
- data/spec/lib/helpers.rb +137 -0
- data/spec/lib/matchers.rb +235 -0
- data/spec/markdowntest_spec.rb +79 -0
- metadata +205 -0
metadata
ADDED
@@ -0,0 +1,205 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bluecloth
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.6.pre120
|
5
|
+
platform: x86-mswin32
|
6
|
+
authors:
|
7
|
+
- Michael Granger
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-15 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: |-
|
17
|
+
BlueCloth is a Ruby implementation of [Markdown][1], a text-to-HTML conversion
|
18
|
+
tool for web writers. To quote from the project page: Markdown allows you to
|
19
|
+
write using an easy-to-read, easy-to-write plain text format, then convert it to
|
20
|
+
structurally valid XHTML (or HTML).
|
21
|
+
email:
|
22
|
+
- ged@FaerieMUD.org
|
23
|
+
executables:
|
24
|
+
- bluecloth
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- ChangeLog
|
29
|
+
- README
|
30
|
+
- LICENSE
|
31
|
+
- LICENSE.discount
|
32
|
+
files:
|
33
|
+
- Rakefile
|
34
|
+
- ChangeLog
|
35
|
+
- README
|
36
|
+
- LICENSE
|
37
|
+
- spec/bluecloth/101_changes_spec.rb
|
38
|
+
- spec/bluecloth/autolinks_spec.rb
|
39
|
+
- spec/bluecloth/blockquotes_spec.rb
|
40
|
+
- spec/bluecloth/code_spans_spec.rb
|
41
|
+
- spec/bluecloth/emphasis_spec.rb
|
42
|
+
- spec/bluecloth/entities_spec.rb
|
43
|
+
- spec/bluecloth/hrules_spec.rb
|
44
|
+
- spec/bluecloth/images_spec.rb
|
45
|
+
- spec/bluecloth/inline_html_spec.rb
|
46
|
+
- spec/bluecloth/links_spec.rb
|
47
|
+
- spec/bluecloth/lists_spec.rb
|
48
|
+
- spec/bluecloth/paragraphs_spec.rb
|
49
|
+
- spec/bluecloth/titles_spec.rb
|
50
|
+
- spec/bluecloth_spec.rb
|
51
|
+
- spec/bugfix_spec.rb
|
52
|
+
- spec/contributions_spec.rb
|
53
|
+
- spec/discount_spec.rb
|
54
|
+
- spec/markdowntest_spec.rb
|
55
|
+
- spec/lib/constants.rb
|
56
|
+
- spec/lib/helpers.rb
|
57
|
+
- spec/lib/matchers.rb
|
58
|
+
- bin/bluecloth
|
59
|
+
- lib/bluecloth.rb
|
60
|
+
- ext/bluecloth.c
|
61
|
+
- ext/Csio.c
|
62
|
+
- ext/css.c
|
63
|
+
- ext/docheader.c
|
64
|
+
- ext/generate.c
|
65
|
+
- ext/markdown.c
|
66
|
+
- ext/mkdio.c
|
67
|
+
- ext/resource.c
|
68
|
+
- ext/version.c
|
69
|
+
- ext/xml.c
|
70
|
+
- ext/xmlpage.c
|
71
|
+
- ext/amalloc.h
|
72
|
+
- ext/bluecloth.h
|
73
|
+
- ext/config.h
|
74
|
+
- ext/cstring.h
|
75
|
+
- ext/markdown.h
|
76
|
+
- ext/mkdio.h
|
77
|
+
- ext/extconf.rb
|
78
|
+
- rake/191_compat.rb
|
79
|
+
- rake/dependencies.rb
|
80
|
+
- rake/helpers.rb
|
81
|
+
- rake/hg.rb
|
82
|
+
- rake/manual.rb
|
83
|
+
- rake/packaging.rb
|
84
|
+
- rake/publishing.rb
|
85
|
+
- rake/rdoc.rb
|
86
|
+
- rake/style.rb
|
87
|
+
- rake/svn.rb
|
88
|
+
- rake/testing.rb
|
89
|
+
- rake/verifytask.rb
|
90
|
+
- rake/win32.rb
|
91
|
+
- ./LICENSE.discount
|
92
|
+
- ./spec/data/antsugar.txt
|
93
|
+
- ./spec/data/ml-announce.txt
|
94
|
+
- ./spec/data/re-overflow.txt
|
95
|
+
- ./spec/data/re-overflow2.txt
|
96
|
+
- ./spec/data/markdowntest/Amps and angle encoding.text
|
97
|
+
- ./spec/data/markdowntest/Auto links.text
|
98
|
+
- ./spec/data/markdowntest/Backslash escapes.text
|
99
|
+
- ./spec/data/markdowntest/Blockquotes with code blocks.text
|
100
|
+
- ./spec/data/markdowntest/Code Blocks.text
|
101
|
+
- ./spec/data/markdowntest/Code Spans.text
|
102
|
+
- ./spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.text
|
103
|
+
- ./spec/data/markdowntest/Horizontal rules.text
|
104
|
+
- ./spec/data/markdowntest/Inline HTML (Advanced).text
|
105
|
+
- ./spec/data/markdowntest/Inline HTML (Simple).text
|
106
|
+
- ./spec/data/markdowntest/Inline HTML comments.text
|
107
|
+
- ./spec/data/markdowntest/Links, inline style.text
|
108
|
+
- ./spec/data/markdowntest/Links, reference style.text
|
109
|
+
- ./spec/data/markdowntest/Links, shortcut references.text
|
110
|
+
- ./spec/data/markdowntest/Literal quotes in titles.text
|
111
|
+
- ./spec/data/markdowntest/Markdown Documentation - Basics.text
|
112
|
+
- ./spec/data/markdowntest/Markdown Documentation - Syntax.text
|
113
|
+
- ./spec/data/markdowntest/Nested blockquotes.text
|
114
|
+
- ./spec/data/markdowntest/Ordered and unordered lists.text
|
115
|
+
- ./spec/data/markdowntest/Strong and em together.text
|
116
|
+
- ./spec/data/markdowntest/Tabs.text
|
117
|
+
- ./spec/data/markdowntest/Tidyness.text
|
118
|
+
- ./spec/data/markdowntest/Amps and angle encoding.html
|
119
|
+
- ./spec/data/markdowntest/Auto links.html
|
120
|
+
- ./spec/data/markdowntest/Backslash escapes.html
|
121
|
+
- ./spec/data/markdowntest/Blockquotes with code blocks.html
|
122
|
+
- ./spec/data/markdowntest/Code Blocks.html
|
123
|
+
- ./spec/data/markdowntest/Code Spans.html
|
124
|
+
- ./spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.html
|
125
|
+
- ./spec/data/markdowntest/Horizontal rules.html
|
126
|
+
- ./spec/data/markdowntest/Inline HTML (Advanced).html
|
127
|
+
- ./spec/data/markdowntest/Inline HTML (Simple).html
|
128
|
+
- ./spec/data/markdowntest/Inline HTML comments.html
|
129
|
+
- ./spec/data/markdowntest/Links, inline style.html
|
130
|
+
- ./spec/data/markdowntest/Links, reference style.html
|
131
|
+
- ./spec/data/markdowntest/Links, shortcut references.html
|
132
|
+
- ./spec/data/markdowntest/Literal quotes in titles.html
|
133
|
+
- ./spec/data/markdowntest/Markdown Documentation - Basics.html
|
134
|
+
- ./spec/data/markdowntest/Markdown Documentation - Syntax.html
|
135
|
+
- ./spec/data/markdowntest/Nested blockquotes.html
|
136
|
+
- ./spec/data/markdowntest/Ordered and unordered lists.html
|
137
|
+
- ./spec/data/markdowntest/Strong and em together.html
|
138
|
+
- ./spec/data/markdowntest/Tabs.html
|
139
|
+
- ./spec/data/markdowntest/Tidyness.html
|
140
|
+
- ./ext/VERSION
|
141
|
+
- Rakefile.local
|
142
|
+
- LICENSE.discount
|
143
|
+
- lib/1.8/bluecloth_ext.so
|
144
|
+
- lib/1.9/bluecloth_ext.so
|
145
|
+
has_rdoc: true
|
146
|
+
homepage: http://deveiate.org/projects/BlueCloth/
|
147
|
+
licenses: []
|
148
|
+
|
149
|
+
post_install_message:
|
150
|
+
rdoc_options:
|
151
|
+
- -w
|
152
|
+
- "4"
|
153
|
+
- -HN
|
154
|
+
- -i
|
155
|
+
- .
|
156
|
+
- -m
|
157
|
+
- README
|
158
|
+
- -t
|
159
|
+
- bluecloth
|
160
|
+
- -W
|
161
|
+
- http://deveiate.org/projects/BlueCloth/browser/
|
162
|
+
require_paths:
|
163
|
+
- lib
|
164
|
+
- ext
|
165
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: "0"
|
170
|
+
version:
|
171
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - ">="
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: "0"
|
176
|
+
version:
|
177
|
+
requirements: []
|
178
|
+
|
179
|
+
rubyforge_project:
|
180
|
+
rubygems_version: 1.3.5
|
181
|
+
signing_key:
|
182
|
+
specification_version: 3
|
183
|
+
summary: BlueCloth is a Ruby implementation of Markdown
|
184
|
+
test_files:
|
185
|
+
- spec/bluecloth/101_changes_spec.rb
|
186
|
+
- spec/bluecloth/autolinks_spec.rb
|
187
|
+
- spec/bluecloth/blockquotes_spec.rb
|
188
|
+
- spec/bluecloth/code_spans_spec.rb
|
189
|
+
- spec/bluecloth/emphasis_spec.rb
|
190
|
+
- spec/bluecloth/entities_spec.rb
|
191
|
+
- spec/bluecloth/hrules_spec.rb
|
192
|
+
- spec/bluecloth/images_spec.rb
|
193
|
+
- spec/bluecloth/inline_html_spec.rb
|
194
|
+
- spec/bluecloth/links_spec.rb
|
195
|
+
- spec/bluecloth/lists_spec.rb
|
196
|
+
- spec/bluecloth/paragraphs_spec.rb
|
197
|
+
- spec/bluecloth/titles_spec.rb
|
198
|
+
- spec/bluecloth_spec.rb
|
199
|
+
- spec/bugfix_spec.rb
|
200
|
+
- spec/contributions_spec.rb
|
201
|
+
- spec/discount_spec.rb
|
202
|
+
- spec/markdowntest_spec.rb
|
203
|
+
- spec/lib/constants.rb
|
204
|
+
- spec/lib/helpers.rb
|
205
|
+
- spec/lib/matchers.rb
|