How does getkirby.com display Kirbytag usage within a fenced code block?
For example, on (link: …) | Kirby CMS the usage looks like:
(link: http://wikipedia.org text: Wikipedia)
I can see at https://github.com/getkirby/getkirby.com/blob/master/content/1_docs/3_reference/1_text/0_kirbytags/0_link/kirbytag.txt that the Kirbytag is escaped with a \
:
```kirbytext
(\link: http://wikipedia.org text: Wikipedia)
```
But when I escape it on my installation, I get it with the slash.
(\link: http://wikipedia.org text: Wikipedia)
I assume somewhere in the Kirby installation there is something that replaces (\
with (
but I can’t find where that actually occurs.