Lines Matching refs:url
353 # Link defs are in the form: ^[id]: url "optional title"
359 <?(\S+?)>? # url = $2
637 # delimiters in inline links like [this](<url>).
694 # Next, inline-style links: [link text](url "optional title")
752 $url = $this->urls[$link_id];
753 $url = $this->encodeAttribute($url);
755 $result = "<a href=\"$url\"";
774 $url = $matches[3] == '' ? $matches[4] : $matches[3];
777 $url = $this->encodeAttribute($url);
779 $result = "<a href=\"$url\"";
817 # Next, handle inline images: ![alt text](url "optional title")
829 <(\S*)> # src url = $3
831 ('.$this->nested_url_parenthesis_re.') # src url = $4
858 $url = $this->encodeAttribute($this->urls[$link_id]);
859 $result = "<img src=\"$url\" alt=\"$alt_text\"";
878 $url = $matches[3] == '' ? $matches[4] : $matches[3];
882 $url = $this->encodeAttribute($url);
883 $result = "<img src=\"$url\" alt=\"$alt_text\"";
1449 $url = $this->encodeAttribute($matches[1]);
1450 $link = "<a href=\"$url\">$url</a>";
2629 # Link defs are in the form: [^id]: url "optional title"
2769 # Link defs are in the form: [id]*: url "optional title"