Class: Stepmod::Utils::Converters::ExpressG

Inherits:
Base
  • Object
show all
Defined in:
lib/stepmod/utils/converters/express_g.rb

Instance Method Summary collapse

Instance Method Details

#to_coradoc(node, state = {}) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/stepmod/utils/converters/express_g.rb', line 7

def to_coradoc(node, state = {})
  node.children.map do |child|
    next unless child.name == "imgfile"

    parse_to_svg_reference(child["file"], state)
  end.join("\n")
end