function Markdown_Parser::_doAnchors_reference_callback in Markdown 6        
                          
                  
                        Same name and namespace in other branches
- 5 markdown.php \Markdown_Parser::_doAnchors_reference_callback()
 
 
1 method overrides Markdown_Parser::_doAnchors_reference_callback()
  - MarkdownExtra_Parser::_doAnchors_reference_callback in ./markdown.php
 
  
 
File
 
   - ./markdown.php, line 757
 
  
  Class
  
  - Markdown_Parser 
 
  
Code
function _doAnchors_reference_callback($matches) {
  $whole_match = $matches[1];
  $link_text = $matches[2];
  $link_id =& $matches[3];
  if ($link_id == "") {
    
    $link_id = $link_text;
  }
  
  $link_id = strtolower($link_id);
  $link_id = preg_replace('{[ ]?\\n}', ' ', $link_id);
  if (isset($this->urls[$link_id])) {
    $url = $this->urls[$link_id];
    $url = $this
      ->encodeAttribute($url);
    $result = "<a href=\"{$url}\"";
    if (isset($this->titles[$link_id])) {
      $title = $this->titles[$link_id];
      $title = $this
        ->encodeAttribute($title);
      $result .= " title=\"{$title}\"";
    }
    $link_text = $this
      ->runSpanGamut($link_text);
    $result .= ">{$link_text}</a>";
    $result = $this
      ->hashPart($result);
  }
  else {
    $result = $whole_match;
  }
  return $result;
}