My blog is hosted on Blogger and I frequently post code snippets in C / C# / Java / XML etc. but I find the snippet gets "mangled".

Are there any web sites that I could use to parse the snippet beforehand and sort out the formatting, convert XML "<" to "<" etc.

There are a numbers of questions around this area on SO but I couldn't find any that address this question directly.

Edit: For @Rich answer, site states "To display the formatted code on your site, you need to get this CSS stylesheet, and add a reference to it in the section of your page". That's the problem - you can't do this on Blogger AFAIK.

link|improve this question

55% accept rate
feedback

16 Answers

up vote 58 down vote accepted

I've created a blog post entry which explains how to add code syntax highlighting to blogger using the syntaxhighlighter 2.0

Here's my blog post:

http://www.craftyfella.com/2010/01/syntax-highlighting-with-blogger-engine.html

I hope it helps you guys.. I'm quite impressed with what it can do.

link|improve this answer
3  
+1 My blog looks sooooo pretty now :) – slugster Mar 1 '10 at 1:27
No worries.. glad to be of service. – CraftyFella Mar 3 '10 at 14:38
@CraftyFella try publishing this: static Dictionary<int, List<Delegate>> _delegate = new Dictionary<int, List<Delegate>>(); – Lirik May 3 '10 at 1:20
If you have < or > you'll have to html encode the text using something like opinionatedgeek.com/dotnet/tools/htmlencode/encode.aspx I got the above working on my blog. – CraftyFella May 3 '10 at 10:02
Should be 3 buttons at the top of the block for copying and pasting. – CraftyFella Jun 8 '10 at 8:14
show 5 more comments
feedback

Easiest way to share code is with a public gist. Just write one up and paste in the embed code. Easy peasy.

gist.github.com

link|improve this answer
1  
this one is by far the easiest! Thanx – Elijah Saounkine Apr 29 '11 at 7:47
dude, after using it for like 20 minutes, I can't thank you enough! The best formatting, no hussle, all the code is in one place, the posts look just beautiful, the editing of a post is incredibly easy as you don't mix up the code with the rest of the post and never worry that you do something stupid and lose/misformat any code. Thanx man! – Elijah Saounkine Apr 29 '11 at 8:17
3  
The embed is javascript, there's a good chance it's invisible to search. That pretty much kills it for blog posts. – James Moore May 3 '11 at 18:51
1  
I am currently using gists but I will probably use SyntaxHighlighter again. Not only gists use JavaScript (which makes them inaccessible in RSS readers as well) but also slow down page loading because every gist is downloaded sequentially blocking rendering. Not a good choice. – Tomasz Nurkiewicz Oct 28 '11 at 20:36
feedback

This can be done fairly easily with SyntaxHighlighter. I have step-by-step instructions for setting up SyntaxHighlighter in Blogger on my blog. SyntaxHighlighter is very easy to use. It lets you post snippets in raw form and then wrap them in pre blocks like:

<pre name="code" class="brush: erlang"><![CDATA[
-module(trim).

-export([string_strip_right/1, reverse_tl_reverse/1, bench/0]).

bench() -> [nbench(N) || N <- [1,1000,1000000]].

nbench(N) -> {N, bench(["a" || _ <- lists:seq(1,N)])}.

bench(String) ->
    {{string_strip_right,
    lists:sum([
        element(1, timer:tc(trim, string_strip_right, [String]))
        || _ <- lists:seq(1,1000)])},
    {reverse_tl_reverse,
    lists:sum([
        element(1, timer:tc(trim, reverse_tl_reverse, [String]))
        || _ <- lists:seq(1,1000)])}}.

string_strip_right(String) -> string:strip(String, right, $\n).

reverse_tl_reverse(String) ->
    lists:reverse(tl(lists:reverse(String))).
]]></pre>

Just change the brush name to "python" or "java" or "javascript" and paste in the code of your choice. The CDATA tagging let's you put pretty much any code in there without worrying about entity escaping or other typical annoyances of code blogging.

link|improve this answer
feedback

Here's a link to one site that will format your code and spit out html, and it even includes inline styles for syntax coloring. Might not work for all of your needs, but is a good start. I believe he has made the source available if you want to extend it:

http://www.manoli.net/csharpformat/

link|improve this answer
See edit above. – nzpcmad Mar 24 '09 at 21:05
feedback

I use SyntaxHighlighter with my Blogger powered blog. The actual site is hosted on my own server rather than Blogger's though (Blogger has an option of ftping posts to your own site), but having your own domain and web hosting only costs a couple of dollars a month.

link|improve this answer
Agreed - there are a number of options if I host my own blog but there doesn't seem to be much support when the blog is actually hosted by Blogger. – nzpcmad Mar 24 '09 at 21:19
feedback

It looks like there have been some changes with SyntaxHighlighter 2.0 that make it easier to use with Blogger.

There are hosted versions of the styles and Javascripts at: http://alexgorbatchev.com/pub/sh/

link|improve this answer
feedback

Actually I had used (what else ;-) ) Vim for this: it has a 2html "plugin". See the docs here.

So as I edit my code, I just convert it to HTML and paste the results to Blogger's HTML editor.

Note: it's not so beautiful HTML (embeded css would be better), but it just works.

Oh: and it has syntax files for several languages which makes it pretty useful.

link|improve this answer
feedback

Emacs specific answer : As far as blogger is concerned, it allows inline css. The problem with javascript based highlighters is that you have to live with their color scheme or implement your own. But, like me, if you are a fan of your own emacs color scheme, you have a much better option available. I have hacked up the "htmlize.el" package for emacs to add the following four functions...

  1. blog-htmlize-buffer
  2. blog-htmlize-region
  3. blog-htmlize-buffer-with-linum
  4. blog-htmlize-region-with-linum

These functions will output copy-paste ready html (inline styled) in a new buffer in emacs, which you can directly use in your blog post. The output looks exactly same as you would see the code in emacs (including the color scheme).

Here is a link to my blog, where you can find detailed information of how to use the "blog-htmlize.el" with emacs. This does away with html-encoding the "less than" and "greater than" signs also. And as emacs is doing all the highlighting and styling, you do not have to worry about whether the js library supports the language of your snippets, nor do you have to meddle with your template code in blogger.

You can find the elisp file here (save the file as blog-htmlize.el)

link|improve this answer
I love this! It could be my selected answer! Thanks @Sujeet – swdev Dec 8 '11 at 22:52
feedback

I use a fairly low tech solution. I format the code using this online syntax highlighting tool then just paste it into the blog

link|improve this answer
Yup - tohtml is the solution as recomended by the TechNet Wiki to paste code! – nzpcmad Oct 19 '11 at 23:32
feedback

This css script might be useful to all - It is not for syntax highlighting but works well for presenting the source code in original format :

 <pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; 
                color: #000000; background-color: #eee;
                font-size: 12px; border: 1px dashed #999999;
                line-height: 14px; padding: 5px; 
                overflow: auto; width: 100%">
       <code style="color:#000000;word-wrap:normal;">

            <<<<<<<YOUR CODE HERE>>>>>>>

       </code>
 </pre>

How to use :

  1. Paste this snippet in text editor,
  2. paste your code in <<<<<<>>>>>> block.
  3. Copy all and
  4. paste to HTML view in blogger(or any other) post editor.

BENEFITS : Simple and easy to use, less configuration, easy to reconfigure, no extra software

link|improve this answer
feedback

I rolled my own in F# (see this question), but it still isn't perfect (I just do regexps, so I don't recognise classes or method names etc.).

Basically, from what I can tell, the blogger editor will sometimes eat your angle brackets if you switch between Compose and HTML mode. So you have to paste into HTML mode then save directly. (I may be wrong on this, just tried now and it seems to work - browser dependent?)

It's horrible when you have generics!

link|improve this answer
feedback

Syntax highlighter is rather a tough job and need to get everything in place

You may even check the following link, may be this should help

http://www.blogpandit.com/2009/05/add-code-snippet-to-blogger-mystery.html

link|improve this answer
feedback

I used this web site, that is simple enough for me : http://formatmysourcecode.blogspot.com/

It's just a copy / paste, and I have my code...

link|improve this answer
feedback
#!/bin/sh
# htmlwank  Use to convert C code to html.
# syntax:   htmlwank source-file destination-file

if [ "$#" != 2 ]
  then
    echo "Usage: $0 src_text dest_text   (C to HTML)" 1>&2
    exit 1
fi

if [ "$1" == "$2" ]
  then
    echo "Error: Source and Destination files have the same name." 1>&2
    exit 2
fi

sed '1i<pre>
     1,$s/&/\&amp;/g
     1,$s/</\&lt;/g
     1,$s/>/\&gt;/g
     $a</pre>' <"$1" >"$2"
link|improve this answer
feedback

For my blog I use http://hilite.me/ to format source code. It supports lots of formats and outputs rather clean html. But if you have lots of code snippets then you have to do a lot of copy paste. For formatting Python code I've also used Pygments (blog post).

link|improve this answer
feedback

http://formatmysourcecode.blogspot.co.uk/ works fine, you just copy , format, paste back.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.