# File lib/rd/rd2man-lib.rb, line 117
    def apply_to_MethodListItem(element, term, description)
      term = parse_method(term)  # maybe: term -> element.term
      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")}]
      end
    end