Can You Show a Literal Kirbytag in a Code Block?

I’m trying to place a sample article on a site that will instruct the new users how to use all the different kirbytags. The problem is, that Kirby keeps parsing the kirbytags, even if they are placed inside a code block:

<code>
    (link: blog/myarticle)
</code>

Output:

<code>
    <a href="http://mysite.com/blog/myarticle>
        http://mysite.com/blog/myarticle
    </a>
</code>

Short of having to turn all the examples into gists, is there a simple way of doing this that I’m missing?..

Just solved it by using the wonderful Code plugin! - yay!