class RDoc::Markdown

def get_byte

def get_byte
  if @pos >= @string.size
    return nil
  end
  s = @string.getbyte @pos
  @pos += 1
  s
end