You are here

protected function MarkdownExtra::hashClean in Express 8

* 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

vendor/michelf/php-markdown/Michelf/MarkdownExtra.php, line 750

Class

MarkdownExtra
Markdown Extra Parser Class

Namespace

Michelf

Code

protected function hashClean($text) {
  return $this
    ->hashPart($text, 'C');
}