I'm looking for a syntax highlighter cum code formatter for my blog on BlogSpot. I've tried several today, but the all want to include tags, or reference a stylesheet. I'm looking for one that is ideal for segments of code, and includes styling inline. Any suggestions?

link|improve this question

1  
Finding the answer to this quesion helped me resolve my own problem – Pete Aug 26 '09 at 10:14
Blattant self promotion of a deleted blog :) – pinouchon Oct 5 '11 at 17:12
feedback

6 Answers

up vote 3 down vote accepted

You can always copy the extra few bytes of styling for, say, a Pygments highlighter (which really is quite excellent) into the <head> of your blog. You don't even need to install any software; just copy the HTML from the online service.

link|improve this answer
You can't touch the <head> directly using Blogger or BlogSpot. If those styling bytes are the same all of the time for Pygments and don't conflict with styles that Blogger might use, it is necessary to adjust the <head> section in the Blogger template for all posts. How well does RSS work? – orcmid Nov 27 '08 at 19:45
The styles would be the same for all pages; they shouldn't conflict with Blogspot's highlighting. There would not be highlighting in feeds, but that's kind of just like the norm for special blog formatting -- you only get the structure. – Paul Fisher Nov 28 '08 at 3:52
What about Gist? gist.github.com – Burke Holland Aug 8 '11 at 14:54
feedback

The project referenced above has moved:
http://alexgorbatchev.com/wiki/SyntaxHighlighter

Instructions for using it on Blogger:
mlawire.blogspot.com/2009/07/blogger-syntax-highlighting.html

link|improve this answer
This is nice. I'm using it myself now – Pete Aug 26 '09 at 10:15
feedback

Try this one: http://code.google.com/p/syntaxhighlighter/

link|improve this answer
I wrote a step-by-step howto to help configure it in blogger on my blog: yacoding.blogspot.com/2008/05/… – Fabio Gomes Nov 27 '08 at 16:45
feedback

I use SyntaxHighlighter Javascript Library. It's really easy to add and use.

here's more information on it that might help others out:

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

link|improve this answer
feedback

I had this exact problem.

I wrote an image formatter for Pygments (included in the core distribution).

Please don't hate me for such an abomination, but yes, it renders the highlighted code as a png or jpg or whatever you want. So it has no external dependencies etc.

pygmentize -f png -o mysource.png mysource.cs

I try to make sure that I always link a plain text version of the source for people copy-pasting.

link|improve this answer
feedback

If you are concerned about performance and looking for a non Javascript based syntax highlighter for Blogger, you can check the link I have provided. It uses only CSS / HTML and is suitable for all programming languages.

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.