method

from

v7.2.3 - Show latest stable - Class: Comment
from(comment_nodes)
public

No documentation available.

# File tools/rdoc-to-md, line 32
    def from(comment_nodes)
      comments_source_lines = source_lines_for(comment_nodes)

      if comments_source_lines.first == "##"
        MetaComment
      else
        Comment
      end.new(comments_source_lines)
    end