class String

Public Instance Methods

rdoc_to_markdown() click to toggle source

Very basic munge from rdoc to markdown format.

# File lib/hoe/publish.rb, line 308
def rdoc_to_markdown
  self.gsub(/^mailto:/, "").gsub(/^(=+)/) { "#" * $1.size }
end