class Asciidoctor::Standoc::FootnoteBlockInlineMacro

Public Instance Methods

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