protected function MarkdownExtra::hashClean in Markdown 7
* Called whenever a tag must be hashed when a function inserts a "clean" tag * in $text, it passes through this function and is automaticaly escaped, * blocking invalid nested overlap. *
Parameters
string $text: * @return string
File
- includes/
MarkdownExtra.php, line 750
Class
- MarkdownExtra
- Markdown Extra Parser Class
Namespace
MichelfCode
protected function hashClean($text) {
return $this
->hashPart($text, 'C');
}