Method: IsoDoc::HtmlFunction::Html#image_parse
- Defined in:
- lib/isodoc/html_function/html.rb
#image_parse(node, out, caption) ⇒ Object
106 107 108 109 110 111 112 |
# File 'lib/isodoc/html_function/html.rb', line 106 def image_parse(node, out, caption) if svg = node.at("./m:svg", "m" => "http://www.w3.org/2000/svg") svg_parse(svg, out) return end super end |