# File lib/asciidoctor/converter/docbook5.rb, line 488
    def verse node
      result = []
      result << %(<blockquote#{common_attributes node.id, node.role, node.reftext}>)
      result << %(<title>#{node.title}</title>) if node.title?
      if (node.attr? 'attribution') || (node.attr? 'citetitle')
        result << '<attribution>'
        if node.attr? 'attribution'
          result << (node.attr 'attribution')
        end
        if node.attr? 'citetitle'
          result << %(<citetitle>#{node.attr 'citetitle'}</citetitle>)
        end
        result << '</attribution>'
      end
      result << %(<literallayout>#{node.content}</literallayout>)
      result << '</blockquote>'
      result * EOL
    end