diff options
Diffstat (limited to 'includes/parser/Parser.php')
-rw-r--r-- | includes/parser/Parser.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index b6443fdb..939d9e3f 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -5403,6 +5403,16 @@ class Parser { } /** + * Remove any strip markers found in the given text. + * + * @param $text Input string + * @return string + */ + function killMarkers( $text ) { + return $this->mStripState->killMarkers( $text ); + } + + /** * Save the parser state required to convert the given half-parsed text to * HTML. "Half-parsed" in this context means the output of * recursiveTagParse() or internalParse(). This output has strip markers |