You are here

function Markdown_Parser::_hashHTMLBlocks_callback in Markdown 5

Same name and namespace in other branches
  1. 6 markdown.php \Markdown_Parser::_hashHTMLBlocks_callback()

File

./markdown.php, line 506

Class

Markdown_Parser

Code

function _hashHTMLBlocks_callback($matches) {
  $text = $matches[1];
  $key = $this
    ->hashBlock($text);
  return "\n\n{$key}\n\n";
}