Class: Stepmod::Utils::Converters::Note
- Inherits:
-
Base
- Object
- Coradoc::Input::Html::Converters::Base
- Base
- Stepmod::Utils::Converters::Note
- Defined in:
- lib/stepmod/utils/converters/note.rb
Instance Method Summary collapse
Instance Method Details
#to_coradoc(node, state = {}) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/stepmod/utils/converters/note.rb', line 7 def to_coradoc(node, state = {}) # If we want to skip this node return "" if state[:no_notes_examples] <<~TEMPLATE [NOTE] -- #{treat_children(node, state).strip} -- TEMPLATE end |