Sha256: 3d40e4345ee190d24c2bcc14535ccb7abb614359b277c887e47be7d27c57f79e
Contents?: true
Size: 963 Bytes
Versions: 23
Compression:
Stored size: 963 Bytes
Contents
require 'rabbit/element/text-block-element' module Rabbit module Element class Container include ContainerElement include BlockElement end class BlockQuote include ContainerElement include BlockElement include BlockHorizontalCentering attr_reader :cite, :title, :avatar def initialize(elems=[], prop={}) super(elems) %w(cite title avatar).each do |name| instance_variable_set("@#{name}", prop[name]) end end def to_html(generator) "<blockquote>#{super}</blockquote>" end end class Paragraph include TextBlockElement def text "#{super}\n" end def to_rd text end def to_html(generator) "<p>\n#{super}\n</p>" end end class WaitBlock include ContainerElement include BlockElement def have_wait_tag? true end end end end
Version data entries
23 entries across 23 versions & 1 rubygems