Include this node in the previous/next navigation chain?
Source: show | on GitHub
# File lib/erbook/document.rb, line 279 def chain? definition['chain'] end
# File lib/erbook/document.rb, line 283 def inline? definition['inline'] end
# File lib/erbook/document.rb, line 272 def ordinal_number? Array(definition['number']).include? 'ordinal' end
# File lib/erbook/document.rb, line 268 def section_number? Array(definition['number']).include? 'section' end
# File lib/erbook/document.rb, line 287 def silent? definition['silent'] end
Returns the output of this node.
# File lib/erbook/document.rb, line 260 def to_s if silent? '' else output end end