Hi everybody,
i have installed the extension, but it only works, when editing.
This means, if i use "insert codeblock" the syntaxhighlighting and linenumber is shown correctly. After saving there is no syntaxhighlighting, the linenumbers are not displayed and the wikipage is categorised in "pages with syntax highlighting errors".
The only thing, that is written on the page is:
<syntaxhighlight lang="python3" line="1" start="55">
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</syntaxhighlight>