class RDoc::Markdown

def _StyleBlock

StyleBlock = < InStyleTags > @BlankLine* { if css? then RDoc::Markup::Raw.new text end }
def _StyleBlock
  _save = self.pos
  while true # sequence
    _text_start = self.pos
    _tmp = apply(:_InStyleTags)
    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    while true
      _tmp = _BlankLine()
      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  if css? then
                  RDoc::Markup::Raw.new text
                end ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence
  set_failed_rule :_StyleBlock unless _tmp
  return _tmp
end