Class: Slaw::Grammars::ZA::Act::Part

Inherits:
Treetop::Runtime::SyntaxNode
  • Object
show all
Defined in:
lib/slaw/grammars/za/act_nodes.rb

Instance Method Summary collapse

Instance Method Details

#numObject



136
137
138
# File 'lib/slaw/grammars/za/act_nodes.rb', line 136

def num
  heading.num
end

#to_xml(b, *args) ⇒ Object



140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/slaw/grammars/za/act_nodes.rb', line 140

def to_xml(b, *args)
  id = "part-#{num}"

  # include a chapter number in the id if our parent has one
  if parent and parent.parent.is_a?(Chapter) and parent.parent.num
    id = "chapter-#{parent.parent.num}.#{id}"
  end

  b.part(id: id) { |b|
    heading.to_xml(b)
    children.elements.each_with_index { |e, i| e.to_xml(b, id + '.', i) }
  }
end