Home | History | Annotate | Download | only in PHP-Markdown-Extra-1.2.3

Lines Matching defs:abbr

2791     # Find defined abbreviations in text and wrap them in <abbr> elements.
2806 $abbr = $matches[0];
2807 if (isset($this->abbr_desciptions[$abbr])) {
2808 $desc = $this->abbr_desciptions[$abbr];
2810 return $this->hashPart("<abbr>$abbr</abbr>");
2813 return $this->hashPart("<abbr title=\"$desc\">$abbr</abbr>");