Module RedCloth
In: lib/redcloth/version.rb
lib/redcloth/textile_doc.rb
lib/redcloth.rb

Methods

include   new  

Classes and Modules

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

Constants

NAME = "RedCloth"
GEM_NAME = NAME
URL = "http://redcloth.org/"
SUMMARY = "#{NAME}-#{VERSION::FULL_VERSION}-#{EXTENSION_LANGUAGE}"
SUMMARY = "#{NAME}-#{VERSION::FULL_VERSION}"
DESCRIPTION = SUMMARY + " - #{description}\n#{URL}"

Public Class methods

Include extension modules (if any) in TextileDoc.

[Source]

    # File lib/redcloth.rb, line 33
33:   def self.include(*args)
34:     RedCloth::TextileDoc.send(:include, *args)
35:   end

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

[Source]

    # File lib/redcloth.rb, line 28
28:   def self.new( *args, &block )
29:     RedCloth::TextileDoc.new( *args, &block )
30:   end

[Validate]