Searched refs:alt_text (Results 1 – 2 of 2) sorted by relevance
/plugin/markdownextra/ |
H A D | markdown.php | 869 $alt_text = $matches[2]; 876 $alt_text = $this->encodeAttribute($alt_text); 879 $result = "<img src=\"$url\" alt=\"$alt_text\""; 897 $alt_text = $matches[2]; 901 $alt_text = $this->encodeAttribute($alt_text); 903 $result = "<img src=\"$url\" alt=\"$alt_text\""; 2559 $alt_text = $matches[2]; 2566 $alt_text = $this->encodeAttribute($alt_text); 2589 $alt_text = $matches[2]; 2594 $alt_text = $this->encodeAttribute($alt_text); [all …]
|
/plugin/markdownextra/lib/meltdown/js/lib/ |
H A D | js-markdown-extra.js | 790 ), function(match, whole_match, alt_text, link_id) { argument 795 link_id = alt_text.toLowerCase(); // for shortcut links like ![this][]. 798 alt_text = self.encodeAttribute(alt_text); 802 result = "<img src=\"" + url + "\" alt=\"" + alt_text + "\""; 849 ), function(match, whole_match, alt_text, url3, url4, x5, x6, title) { argument 853 alt_text = self.encodeAttribute(alt_text); 855 var result = "<img src=\"" + url + "\" alt=\"" + alt_text + "\"";
|