Home
last modified time | relevance | path

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

/plugin/markdownextra/lib/meltdown/js/lib/
Djs-markdown-extra.js459 var key = self.hashBlock(text);
496 Markdown_Parser.prototype.hashBlock = function(text) { method in Markdown_Parser
592 return "\n" + self.hashBlock("<hr" + self.empty_element_suffix) + "\n";
886 return "\n" + self.hashBlock(block) + "\n\n";
908 return "\n" + self.hashBlock(block) + "\n\n";
936 result = self.hashBlock("<" + list_type + ">\n" + result + "</" + list_type + ">");
1096 return "\n\n" + self.hashBlock(codeblock) + "\n\n";
1314 return "\n" + self.hashBlock("<blockquote>\n" + bq + "\n</blockquote>") + "\n\n";
2024 t = this._hashHTMLBlocks_inHTML(tag + text, this.hashBlock, true);
2304 return "\n" + self.hashBlock(block) + "\n\n";
[all …]
/plugin/markdownextra/
Dmarkdown.php543 $key = $this->hashBlock($text);
571 function hashBlock($text) { function in Markdown_Parser
636 "\n".$this->hashBlock("<hr$this->empty_element_suffix")."\n",
951 return "\n" . $this->hashBlock($block) . "\n\n";
956 return "\n" . $this->hashBlock($block) . "\n\n";
1040 $result = $this->hashBlock("<$list_type>\n" . $result . "</$list_type>");
1145 return "\n\n".$this->hashBlock($codeblock)."\n\n";
1347 return "\n". $this->hashBlock("<blockquote>\n$bq\n</blockquote>")."\n\n";
2654 return "\n" . $this->hashBlock($block) . "\n\n";
2660 return "\n" . $this->hashBlock($block) . "\n\n";
[all …]