# File lib/rd/rd2man-lib.rb, line 108
    def apply_to_DescListItem(element, term, description)
      anchor = refer(element)
      if description.empty?
        ".TP\n.fi\n.B\n#{term.join(" ")}"
      else
        %[.TP\n.fi\n.B\n#{term.join(" ")}\n#{description.join("\n")}].chomp
      end
    end