Since most of my posts are going to be technical, I was interested in finding a way to post code snippets on Blogger. After some Googling around, I found this post on "easy syntax highlighting for blogger", which is exactly what I was looking for. I have followed the instructions and am going to test it out now. Here goes a code snippet...
1 | #include <stdio.h> |
2 | #include <stdlib.h> |
3 |
4 | int main() |
5 | { |
6 | printf ( "Hello World!\n" ); |
7 | return 0; |
8 | } |
This post by Patrick Webster is also very helpful, especially the sections on "Step 2: Clean the Code" and "Blank Lines in IE".
No comments:
Post a Comment