Is there a way to use markdown and google-code-prettify library to use together to pretify the my code?
I have been using
``` var s = "hello world!"; ```
which produces <pre><code> </code></pre> HTML markup. But I am unable to add the prettyprint class to it.
I have also tried using basic html markup
<pre class="prettyprint"><code> var s = "hello world!"; </code></pre>
but postach.io seems to remove the pre and code html tags.