MediaWiki-MarkdownExtraParser
MediaWiki-MarkdownExtraParser copied to clipboard
doesn't work with mediawiki somehow
where should I put these lines? which file and which line? Thanks!
$MarkdownExtraParserOptions = array( 'use_raw_html' => true, );
As per the installation instructions:
Enable the extension by adding the following line to your "LocalSettings.php" file:
require_once "$IP/extensions/MarkdownExtraParser/MarkdownExtraParser.php";
Configuration Before "requiring" the extension, you can set an array variable to hold some configuration settings for MarkdownExtraParser...
So the answer is it goes in the MediaWiki LocalSettings.php file and it goes prior to the require_once
line used to enable the extension. You can ultimately place the require_once
line wherever you'd like in the LocalSettings.php file.
ok, thanks for the feedback, will give it a try