protected function Markdown::_hashHTMLBlocks_callback in Markdown 7
* The callback for hashing HTML blocks *
Parameters
string $matches: * @return string
File
- includes/Markdown.php, line 477 
Class
- Markdown
- Markdown Parser Class
Namespace
MichelfCode
protected function _hashHTMLBlocks_callback($matches) {
  $text = $matches[1];
  $key = $this
    ->hashBlock($text);
  return "\n\n{$key}\n\n";
}