Sha256: 3f6cac51dc5344c35f2823b1558e586ffa2156719ef04a88d2d9d395be68904a

Contents?: true

Size: 311 Bytes

Versions: 1

Compression:

Stored size: 311 Bytes

Contents

module RedCloth
  class TextileDoc
    
    #
    # Generates DocBook from the Textile contents.
    #
    #   RedCloth.new( "And then? She *fell*!" ).to_rdoc
    #     #=> "And then? She fell!"
    #
    def to_rdoc(*rules)
      apply_rules(rules)
      
      to(RedCloth::Formatters::RDoc)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redcloth-formatters-rdoc-0.0.1 lib/redcloth-formatters-rdoc/textile_doc.rb