Module Creole
In: lib/creole/version.rb
lib/creole/parser.rb
lib/creole.rb

Main Creole parser class. Call CreoleParser#parse to parse Creole formatted text.

This class is not reentrant. A separate instance is needed for each thread that needs to convert Creole to HTML.

Inherit this to provide custom handling of links. The overrideable methods are: make_local_link

Methods

creolize  

Classes and Modules

Class Creole::Parser

Constants

VERSION = '0.5.0'

Public Class methods

Convert the argument in Creole format to HTML and return the result. Example:

   Creole.creolize("**Hello //World//**")
       #=> "<p><strong>Hello <em>World</em></strong></p>"

This is an alias for calling Creole#parse:

   Creole.new(text).to_html

[Validate]