Module RedCloth
In: lib/redcloth/textile_doc.rb
lib/redcloth/version.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::NotCompiledError
Class RedCloth::TextileDoc

Constants

NAME = "RedCloth"
GEM_NAME = NAME
URL = "http://redcloth.org/"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION}-#{EXTENSION_LANGUAGE} - #{description}\n#{URL}"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION} - #{description}\n#{URL}"
EXTENSION_LANGUAGE = rb_str_new2("C")
NAME = "RedCloth"
GEM_NAME = NAME
URL = "http://redcloth.org/"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION}-#{EXTENSION_LANGUAGE} - #{description}\n#{URL}"
DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION} - #{description}\n#{URL}"

Public Class methods

Include extension modules (if any) in TextileDoc.

[Source]

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

Include extension modules (if any) in TextileDoc.

[Source]

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

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

[Source]

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

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

[Source]

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

[Validate]