mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 15:44:33 +00:00
Prevent modification of math markup after output
In the early rendering phase the output of the math extension should not be treated as wiki markup. Bug: T129032 Change-Id: Idaabd835f04de6133824ce8db53e590af91b626c
This commit is contained in:
parent
0e63a6b695
commit
8113aa03c0
|
@ -201,7 +201,7 @@ class MathHooks {
|
|||
self::$tags[$marker] = array( $renderer, $parser );
|
||||
return $marker;
|
||||
}
|
||||
return self::mathPostTagHook( $renderer, $parser );
|
||||
return array( self::mathPostTagHook( $renderer, $parser ), 'markerType' => 'nowiki' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue