You are here

function MarkdownExtra_Parser::hashClean in Markdown 6

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

File

./markdown.php, line 2347

Class

MarkdownExtra_Parser

Code

function hashClean($text) {

  #

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

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

  # blocking invalid nested overlap.

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