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