# File lib/asciidoctor/converter/manpage.rb, line 162
    def section node
      result = []
      if node.level > 1
        macro = 'SS'
        # QUESTION why captioned title? why not when level == 1?
        stitle = node.captioned_title
      else
        macro = 'SH'
        stitle = node.title.upcase
      end
      result << %(.#{macro} "#{manify stitle}"
#{node.content})
      result * LF
    end