class RDoc::Markdown

def _IndentedLine

IndentedLine = Indent Line
def _IndentedLine
  _save = self.pos
  while true # sequence
    _tmp = apply(:_Indent)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_Line)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence
  set_failed_rule :_IndentedLine unless _tmp
  return _tmp
end