You are here

function MarkdownExtra_Parser::hashClean in Markdown 5

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

File

./markdown.php, line 2175

Class

MarkdownExtra_Parser

Code

function hashClean($text) {

  #

  # Called whenever a tag must be hashed when a function insert a "clean" tag

  # in $text, it pass through this function and is automaticaly escaped,

  # blocking invalid nested overlap.

  #
  return $this
    ->hashPart($text, 'C');
}