I have "SyntaxHighlight" extension installed and it works fine with Wikitext, but when I edit in markdown mode like this:
```python
python code here
```
System throws this error:
[015b401c65ab6b87b21ccd91] /index.php?title=Azala Error: Class "SyntaxHighlight" not found
Backtrace:
from /home/projects/wiki/extensions/WikiMarkdown/includes/WikiMarkdown.php(102)
#0 [internal function]: WikiMarkdown::{closure}()
#1 /home/projects/wiki/extensions/WikiMarkdown/includes/WikiMarkdown.php(104): preg_replace_callback()
#2 /home/projects/wiki/includes/parser/Parser.php(3996): WikiMarkdown::parserHook()
...
my LocalSettings:
# highlight
wfLoadExtension('SyntaxHighlight');
# markdown
wfLoadExtension('WikiMarkdown');
$wgAllowMarkdownExtra = true; // allows usage of Parsedown Extra
$wgAllowMarkdownExtended = true; // allows usage of Parsedown Extended
$wgSyntaxHighlightLanguageCodeMap['markdown'] = 'markdown';