# File lib/asciidoctor/converter/manpage.rb, line 221
    def dlist node
      result = []
      counter = 0
      node.items.each do |terms, dd|
        counter += 1
        case node.style
        when 'qanda'
          result << %(.sp
#{counter}. #{manify([*terms].map {|dt| dt.text } * ' ')}
.RS 4)
        else
          result << %(.sp
#{manify([*terms].map {|dt| dt.text } * ', ')}
.RS 4)
        end
        if dd
          result << (manify dd.text) if dd.text?
          result << dd.content if dd.blocks?
        end
        result << '.RE'
      end
      result * LF
    end