Module RedCloth
In: lib/redcloth/version.rb
lib/redcloth/textile_doc.rb
lib/redcloth.rb
ext/redcloth_scan/redcloth_scan.c
lib/redcloth/textile_doc.rb
lib/redcloth/version.rb
lib/redcloth.rb

Transforms a Textile document with formatter

Methods

include   include   new   new  

Classes and Modules

Module RedCloth::Formatters
Module RedCloth::VERSION
Class RedCloth::TextileDoc

Constants

NAME = "RedCloth"
GEM_NAME = NAME
URL = "http://redcloth.org/"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION} - Textile parser for Ruby.\n#{URL}"
NAME = "RedCloth"
GEM_NAME = NAME
URL = "http://redcloth.org/"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION} - Textile parser for Ruby.\n#{URL}"

Public Class methods

Include extension modules (if any) in TextileDoc.

[Source]

    # File lib/redcloth.rb, line 26
26:   def self.include(*args)
27:     RedCloth::TextileDoc.send(:include, *args)
28:   end

Include extension modules (if any) in TextileDoc.

[Source]

    # File lib/redcloth.rb, line 26
26:   def self.include(*args)
27:     RedCloth::TextileDoc.send(:include, *args)
28:   end

A convenience method for creating a new TextileDoc. See RedCloth::TextileDoc.

[Source]

    # File lib/redcloth.rb, line 21
21:   def self.new( *args, &block )
22:     RedCloth::TextileDoc.new( *args, &block )
23:   end

A convenience method for creating a new TextileDoc. See RedCloth::TextileDoc.

[Source]

    # File lib/redcloth.rb, line 21
21:   def self.new( *args, &block )
22:     RedCloth::TextileDoc.new( *args, &block )
23:   end

[Validate]