Blogger插入程式片段和syntax highlight

跟著這篇教學把code block弄起來,使用 CSS + Google Code Prettify。還是會用gist,但有時需要很多段code snippet,gist就太麻煩了。

使用方式:
在HTML中用這段將code包住。
如果包含需要escape的字元,到Quick Escape之類的網站做conversion。

<pre class="codeblock prettyprint">
int main() {
    printf("Hello world!");
}
</pre>

Comments