function Markdown_Parser::_hashHTMLBlocks_callback in Markdown 6
Same name and namespace in other branches
- 5 markdown.php \Markdown_Parser::_hashHTMLBlocks_callback()
File
- ./
markdown.php, line 541
Class
Code
function _hashHTMLBlocks_callback($matches) {
$text = $matches[1];
$key = $this
->hashBlock($text);
return "\n\n{$key}\n\n";
}