module RedCloth
Constants
- DESCRIPTION
- EXTENSION_LANGUAGE
- GEM_NAME
- NAME
- SUMMARY
- URL
Public Class Methods
include(*args)
click to toggle source
Include extension modules (if any) in TextileDoc
.
# File lib/redcloth.rb 39 def self.include(*args) 40 RedCloth::TextileDoc.send(:include, *args) 41 end
new( *args, &block )
click to toggle source
A convenience method for creating a new TextileDoc
. See RedCloth::TextileDoc
.
# File lib/redcloth.rb 34 def self.new( *args, &block ) 35 RedCloth::TextileDoc.new( *args, &block ) 36 end