class RDoc::Markdown

def _ListContinuationBlock

ListContinuationBlock = @StartList:a @BlankLine* { a << "\n" } (Indent ListBlock:b { a.concat b })+ { a }
def _ListContinuationBlock
  _save = self.pos
  while true # sequence
    _tmp = _StartList()
    a = @result
    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;  a << "\n" ; end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    _save2 = self.pos
    _save3 = self.pos
    while true # sequence
      _tmp = apply(:_Indent)
      unless _tmp
        self.pos = _save3
        break
      end
      _tmp = apply(:_ListBlock)
      b = @result
      unless _tmp
        self.pos = _save3
        break
      end
      @result = begin;  a.concat b ; end
      _tmp = true
      unless _tmp
        self.pos = _save3
      end
      break
    end # end sequence
    if _tmp
      while true
        _save4 = self.pos
        while true # sequence
          _tmp = apply(:_Indent)
          unless _tmp
            self.pos = _save4
            break
          end
          _tmp = apply(:_ListBlock)
          b = @result
          unless _tmp
            self.pos = _save4
            break
          end
          @result = begin;  a.concat b ; end
          _tmp = true
          unless _tmp
            self.pos = _save4
          end
          break
        end # end sequence
        break unless _tmp
      end
      _tmp = true
    else
      self.pos = _save2
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  a ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence
  set_failed_rule :_ListContinuationBlock unless _tmp
  return _tmp
end