How can I disable syntax highlighting in Gogs for an (intented) code block in the README.md
? The problem is that the commands described in the readme are self-defined but contain keywords of other programming languages, therefore the code is highlighted in an odd manner.
According to Markdown Syntax cheatsheet I tried:
:::python
my_function(param1, param2)
but it does not make any change. I think it is ignored by Gogs. As well the notation
~~~python
my_function(param1, param2)
~~~
did not make any change. Can't syntax highlighting be disabled in Gogs Markdown?