strip_leading(size)
Strip off the leading margin
# File lib/rdoc/markup/simple_markup/lines.rb, line 75 def strip_leading(size) if @text.size > size @text[0,size] = "" else @text = "" end end