class PseudoHiki::HtmlFormat::ListLeafNodeFormatter

Public Instance Methods

create_element(tree) click to toggle source
Calls superclass method
# File lib/pseudohiki/htmlformat.rb, line 100
def create_element(tree)
  super(tree).tap do |elm|
    elm[ID] = tree.node_id.upcase if tree.node_id
  end
end