method

write!

write!(out, indentation)
public

No documentation available.

# File tools/rdoc-to-md, line 84
  def write!(out, indentation)
    spaces = " " * indentation

    out << spaces << "##\n"                                # ##
    out << commented(source_lines[1], indentation) << "\n" # # :method: ...

    super
  end