class RDoc::Markdown

def _Plain

Plain = Inlines:a { paragraph a }
def _Plain
  _save = self.pos
  while true # sequence
    _tmp = apply(:_Inlines)
    a = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  paragraph a ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence
  set_failed_rule :_Plain unless _tmp
  return _tmp
end