Method: RedClothForTex#get_refs

Defined in:
lib/redcloth_for_tex.rb

#get_refs(text) ⇒ Object



476
477
478
479
480
481
# File 'lib/redcloth_for_tex.rb', line 476

def get_refs( text ) 
  text.gsub!( /(^|\s)\[(.+?)\]((?:http:\/\/|javascript:|ftp:\/\/|\/)\S+?)(?=\s|$)/ ) do |m|
    flag, url = $~[1..2]
    @urlrefs[flag] = url
  end
end