[Source]
# File lib/texy/modules/html.rb, line 180 def initialize(texy) super self.tags = [] end
# File lib/texy/modules/html.rb, line 187 def opening? @opening end
convert element to HTML string
# File lib/texy/modules/html.rb, line 193 def to_html if opening? Html.opening_tags(tags) else Html.closing_tags(tags) end end
[Validate]