jgarber / redcloth

RedCloth is a Ruby library for converting Textile into HTML.

This URL has Read+Write access

redcloth / CHANGELOG
2dcb2b8a » jgarber 2008-03-18 A start on the changelog an... 1 = RedCloth 4.0
acddd9c7 » why the lucky stiff 2007-02-15 * ext/superredcloth_scan/:... 2
2dcb2b8a » jgarber 2008-03-18 A start on the changelog an... 3 * New SuperRedCloth (RedCloth 4.0) is a total rewrite using Ragel for the parsing.
4ce925a4 » Jason Garber 2008-06-19 Updating the CHANGELOG. 4 * Markdown support has been removed.
2dcb2b8a » jgarber 2008-03-18 A start on the changelog an... 5 * Single newlines become <br> tags, just as in traditional RedCloth and other Textile parsers.
737acee0 » jgarber 2008-07-14 Noted another difference fr... 6 * HTML special characters are automatically escaped inside code signatures, like Textile 2. This means you can simply write @<br />@ and the symbols are escaped whereas in RedCloth 3 you had to write @&lt;br /&gt;@ to make the code fragment readable.
4ce925a4 » Jason Garber 2008-06-19 Updating the CHANGELOG. 7 * The restrictions parameter is observed just like previous versions (except :hard_breaks is now the default).
8ba72f35 » jgarber 2008-07-17 Restructured classes becaus... 8 * Arguments to RedCloth#to_html are called so extensions made for prior versions can work. Note: extensions need to be included rather than defined directly within the RedCloth class as was previously possible.
4ce925a4 » Jason Garber 2008-06-19 Updating the CHANGELOG. 9 * Custom block tags can be implemented as in the previous version, though the means of implementing them differs.
10 * HTML embedded in the Textile input does not often need to be escaped from Textile parsing.
9c875859 » jgarber 2008-07-07 Revised the CHANGELOG 11 * The parser will not wrap lines that begin with a space in paragraph tags.
2dcb2b8a » jgarber 2008-03-18 A start on the changelog an... 12 * Rudimentary support for LaTeX is built in.
9c875859 » jgarber 2008-07-07 Revised the CHANGELOG 13 * RedCloth::VERSION on a line by itself inserts the version number into the output.
2dcb2b8a » jgarber 2008-03-18 A start on the changelog an... 14 * Output (less newlines and tabs) is identical to Textile 2 except a few cases where the RedCloth
15 way was preferable.
9c875859 » jgarber 2008-07-07 Revised the CHANGELOG 16 * Over 500 tests prevent regression
17 * It's 40 times faster than the previous version.