Method: IsoDoc::Function::Blocks#passthrough_parse

Defined in:
lib/isodoc/function/blocks.rb

#passthrough_parse(node, out) ⇒ Object



158
159
160
161
162
# File 'lib/isodoc/function/blocks.rb', line 158

def passthrough_parse(node, out)
  node["formats"] &&
    !(node["formats"].split(" ").include? @format.to_s) and return
  out.passthrough node.text
end