# File lib/asciidoctor/converter/docbook5.rb, line 48
    def section node
      if node.document.doctype == 'manpage'
        tag_name = MANPAGE_SECTION_TAGS[tag_name = node.sectname] || tag_name
      else
        tag_name = node.sectname
      end
      %(<#{tag_name}#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
#{node.content}
</#{tag_name}>)
    end