class Rabbit::Element::Paragraph

Public Instance Methods

text() click to toggle source
# File lib/rabbit/element/block.rb, line 32
def text
  "#{super}\n"
end
to_html(generator) click to toggle source
# File lib/rabbit/element/block.rb, line 40
def to_html(generator)
  "<p>\n#{super}\n</p>"
end
to_rd() click to toggle source
# File lib/rabbit/element/block.rb, line 36
def to_rd
  text
end