Parse contents of <noautolink> tags.

- Fix: Contents of <noautolink> tags are now properly parsed as Wiki text.

Closes #34.
This commit is contained in:
Daniel Kraus
2017-08-31 21:02:33 +02:00
parent b856d3487e
commit 4c67935491

View File

@ -125,7 +125,7 @@ class Extension {
* See https://www.mediawiki.org/wiki/Manual:Tag_extensions#Example
*/
public static function doNoautolinksTag( $input, array $args, \Parser $parser, \PPFrame $frame ) {
return htmlspecialchars( $input );
return $parser->recursiveTagParse( $input, $frame );
}
/*