Changeset 283

Show
Ignore:
Timestamp:
03/18/2008 12:43:35 (8 months ago)
Author:
jgarber
Message:

A start on the changelog and some installation instructions.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r272 r283  
    1 = 1.0 
     1= RedCloth 4.0 
    22=== 15th Feb, 2007 
    33 
    4 * New SuperRC is a total rewrite. 
     4* New SuperRedCloth (RedCloth 4.0) is a total rewrite using Ragel for the parsing. 
     5* The restrictions parameter is accepted for backward compatibility, but is not observed. 
     6* Single newlines become <br> tags, just as in traditional RedCloth and other Textile parsers. 
     7* HTML embedded in the Textile input does not ordinarily need to be escaped from Textile parsing. 
     8* A single line can be skipped by the parser by prepending a space. 
     9* Rudimentary support for LaTeX is built in. 
     10* Output (less newlines and tabs) is identical to Textile 2 except a few cases where the RedCloth 
     11  way was preferable. 
  • trunk/README

    r282 r283  
    1010 
    1111RedCloth is a Ruby library for converting Textile into HTML. 
     12 
     13== Installing 
     14 
     15RedCloth can be installed via RubyGems: 
     16 
     17  sudo gem install redcloth 
     18 
     19Or can be compiled from its Ragel source with <tt>rake compile</tt>.  Ragel 6.1  
     20or greater is required to build RedCloth. 
    1221 
    1322== What is Textile?