public
Fork of jgarber/redcloth
Description: RedCloth is a Ruby library for converting Textile into HTML.
Homepage: http://code.whytheluckystiff.net/redcloth/
Clone URL: git://github.com/github/redcloth.git
A start on the changelog and some installation instructions.
jgarber (author)
Tue Mar 18 11:43:35 -0700 2008
commit  2dcb2b8a3f898f77d6dae51181720c7b273bdf50
tree    671747a516fb940a19c9c9a997db3e2db6fe6006
parent  2ea8637674a8885ce44f38e2010e60307741be14
...
1
 
2
3
4
 
 
 
 
 
 
 
 
...
 
1
2
3
 
4
5
6
7
8
9
10
11
0
@@ -1,4 +1,11 @@
0
-= 1.0
0
+= RedCloth 4.0
0
 === 15th Feb, 2007
0
 
0
-* New SuperRC is a total rewrite.
0
+* New SuperRedCloth (RedCloth 4.0) is a total rewrite using Ragel for the parsing.
0
+* The restrictions parameter is accepted for backward compatibility, but is not observed.
0
+* Single newlines become <br> tags, just as in traditional RedCloth and other Textile parsers.
0
+* HTML embedded in the Textile input does not ordinarily need to be escaped from Textile parsing.
0
+* A single line can be skipped by the parser by prepending a space.
0
+* Rudimentary support for LaTeX is built in.
0
+* Output (less newlines and tabs) is identical to Textile 2 except a few cases where the RedCloth
0
+ way was preferable.
0
...
10
11
12
 
 
 
 
 
 
 
 
 
13
14
15
...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
0
@@ -10,6 +10,15 @@ Copyright:: (c) 2006 why the lucky stiff
0
 
0
 RedCloth is a Ruby library for converting Textile into HTML.
0
 
0
+== Installing
0
+
0
+RedCloth can be installed via RubyGems:
0
+
0
+ sudo gem install redcloth
0
+
0
+Or can be compiled from its Ragel source with <tt>rake compile</tt>. Ragel 6.1
0
+or greater is required to build RedCloth.
0
+
0
 == What is Textile?
0
 
0
 Textile is a simple formatting style for text

Comments

    No one has commented yet.