class Metanorma::Standoc::FootnoteBlockInlineMacro

Public Instance Methods

process(parent, _target, attrs) click to toggle source
# File lib/metanorma/standoc/macros_note.rb, line 39
def process(parent, _target, attrs)
  out = Asciidoctor::Inline.new(parent, :quoted, attrs["text"]).convert
  %{<footnoteblock>#{out}</footnoteblock>}
end