On my Wordpress blog, I use the wp-sytax plugin to format a piece of code.
In the HTML view, I have the following code:
<pre lang="c"> #include<stdio.h> </pre>
But in normal mode, it shows:
#include<stdio.h>
How can I make #include<stdio.h> when I typed it?
source share