Class: Slaw::Grammars::ZA::Act::Chapter

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

Instance Method Summary collapse

Instance Method Details

#numObject



170
171
172
# File 'lib/slaw/grammars/za/act_nodes.rb', line 170

def num
  heading.num
end

#to_xml(b, *args) ⇒ Object



174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/slaw/grammars/za/act_nodes.rb', line 174

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

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

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