module Asciidoctor::PDF::FormattedText::Markup::Attributes0

Public Instance Methods

content() click to toggle source
# File lib/asciidoctor/pdf/formatted_text/parser.rb, line 558
def content
  attrs = {}
  elements.each {|e|
    attr_name, attr_val = e.content
    attrs[attr_name.to_sym] = attr_val
  }
  attrs
end