class RDoc::Markdown

def _RawHtml

RawHtml = < (HtmlComment | HtmlBlockScript | HtmlTag) > { if html? then text else '' end }
def _RawHtml
  _save = self.pos
  while true # sequence
    _text_start = self.pos
    _save1 = self.pos
    while true # choice
      _tmp = apply(:_HtmlComment)
      break if _tmp
      self.pos = _save1
      _tmp = apply(:_HtmlBlockScript)
      break if _tmp
      self.pos = _save1
      _tmp = apply(:_HtmlTag)
      break if _tmp
      self.pos = _save1
      break
    end # end choice
    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  if html? then text else '' end ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence
  set_failed_rule :_RawHtml unless _tmp
  return _tmp
end