Home
last modified time | relevance | path

Searched refs:abbr_word (Results 1 – 2 of 2) sorted by relevance

/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1789 for(var abbr_word in this.predef_abbr) {
1790 var abbr_desc = this.predef_abbr[abbr_word];
1794 this.abbr_word_re += this._php_preg_quote(abbr_word); // ?? str -> re?
1795 this.abbr_desciptions[abbr_word] = this._php_trim(abbr_desc);
2857 ), function(match, abbr_word, abbr_desc) { argument
2861 self.abbr_word_re += self._php_preg_quote(abbr_word);
2862 self.abbr_desciptions[abbr_word] = self._php_trim(abbr_desc);
/plugin/markdownextra/
H A Dmarkdown.php1786 foreach ($this->predef_abbr as $abbr_word => $abbr_desc) {
1789 $this->abbr_word_re .= preg_quote($abbr_word);
1790 $this->abbr_desciptions[$abbr_word] = trim($abbr_desc);
3217 $abbr_word = $matches[1];
3221 $this->abbr_word_re .= preg_quote($abbr_word);
3222 $this->abbr_desciptions[$abbr_word] = trim($abbr_desc);