# File lib/maruku/input/parse_span.rb, line 481
  def read_ref_id(src, con)
    src.ignore_char # [
    if m = src.read_regexp(/([^\]]*?)\]/)
      m[1]
    else
      nil
    end
  end