class RDoc::Markdown

def _Emph

Emph = (EmphStar | EmphUl)
def _Emph
  _save = self.pos
  while true # choice
    _tmp = apply(:_EmphStar)
    break if _tmp
    self.pos = _save
    _tmp = apply(:_EmphUl)
    break if _tmp
    self.pos = _save
    break
  end # end choice
  set_failed_rule :_Emph unless _tmp
  return _tmp
end