class Asciidoctor::Converter::DocBook5Converter

def convert_embedded node

def convert_embedded node
  # NOTE in DocBook 5, the root abstract must be in the info tag and is thus not part of the body
  if @backend == 'docbook5' && (abstract = find_root_abstract node)
    abstract = extract_abstract node, abstract
  end
  result = node.blocks.map {|block| block.convert }.compact.join LF
  restore_abstract abstract if abstract
  result
end