I was just reading how can you tell whether you're ready to start your own blog. The answers are so good and inspiring that I made rush to start my own blog using blogger and stopped right in my tracks. I looked on the menu bar as I was creating my first post, and duh, there's no nice "code sample" formatting option like the one on Stackoverflow.

Does this exist on any of the standard blogging options (blogger/wordpress/livejournal) or is this something I'm going to have to code up myself?

Edit: Using the knowledge I have garnered from this post, I have started a blog using Wordpress entitled //Coding Without Comments. My first post states my reasons for starting a blog, experience in working with wordpress, and summarizes the best Code Formatting options. I will continue to update my post as more answers come in.

link|improve this question

Nice new blog - you've been busy. I'll admit, several of your posts went right over my head, but it's definitely providing me with some motivation. – 81bronco Sep 20 '08 at 3:25
Hah. Thanks man. I've slowed my pace a bit these days. – CodingWithoutComments Sep 20 '08 at 11:51
feedback

closed as not constructive by Bill the Lizard Nov 25 '11 at 13:59

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

22 Answers

up vote 44 down vote accepted

To the best of my knowledge, none of the mainstream blogging services have this built in. It is a function of design and template. I would go with Wordpress because it is the best. For code formatting:

  1. Design your own styles and functionality if you are up to the challenge
  2. Check out the SyntaxHighlighter JavaScript project (used by Hanselman). You should be able to integrate this pretty easily into any blogging system. (See my blog post on integrating this with WordPress).
  3. Use Windows Live Writer with the Insert Code plugin (this will automatically format the code that you paste in properly and post it right to your blog. See here for an example).

Note: If you want to have the most flexibility for constructing your blog template and functionality as you want it to be, you would need to use Self-hosted WordPress.org, not the hosted WordPress.com.

link|improve this answer
2  
+1 for WordPress, especially since Wordpress.com has the SyntaxHighlighter plugin. Now you just need to wrap your code in [sourcecode] tags – Thomas Levesque Oct 5 '10 at 18:36
@Thomas actually this 'just need to wrap' causes lots of issues with TinyMCE's auto html formatting. – Poma May 4 '11 at 12:07
Windows Live Writer also has 'Paste from Visual Studio' plugin that just pastes your code exatly as it is formatted in VS – Poma May 4 '11 at 12:09
Well, I am quite late to the party, but I have found that Colorer works really well for making paste-able syntax highlighted code, although it's language recognition leaves much to be desired. A minor caveat IMO. – Srijan Apr 18 at 9:59
feedback

I was just looking at the Wordpress Plugins and came across the WP-Syntax plugin.

WP-Syntax provides clean syntax highlighting using GeSHi -- supporting a wide range of popular languages. It supports highlighting with or without line numbers and maintains formatting while copying snippets of code from the browser.

link|improve this answer
feedback

In my opinion, Blogger is the best hosted blog solution. It's free, you can have your own domain name, and you can totally customize the template. I'd check out the SytaxHighlighter like several other people here have mentioned. If you need a place to host js and other files, get an Amazon S3 account, and use the S3 Organizer FireFox plugin.

Steer clear of hosted Wordpress. It is terrible. You cannot customize anything without paying for it.

One more thing that not many people pay attention to: If you want to have the best template to show code, I'd find one with a liquid layout. That way your code "box" can grow larger when the reader resizes their browser.

link|improve this answer
(comment added as a bookmark) +1 – toolkit Jan 30 '09 at 14:49
+1 I was researching this today and came to the same conclusion. – cletus May 11 '09 at 9:44
feedback

I suppose you're a programmer if you're lurking here :-) Then I would advise to host Wordpress (or any other blog software) yourself. Not at home, mind you, but on any of the cheap hosting companies around. I won't recommend mine as it's in France, a bit too far away.

There are two main reasons:

  • You will be the master of your domain name: when you want to change hosting company or software, you will be able to do so. You don't want to change your domain name when you have thousands of readers and a Google PageRank of 5.
  • You will be able to customize your software (with little effort) to add the many plugins available.

A few links on the subject:

Cheers

link|improve this answer
feedback

Thomas Levesque hinted at the answer in his comment on the "correct answer", but it wasn't really clear.

Maybe this will help others:

The following works perfectly in WordPress on a free blog with no plugins, scripts, or hassle.

[code lang="vbnet"]

    Dim things As New List(Of Thing)

[/code]

Alternately, this also works:

[sourcecode language="vbnet"]

   Dim things As New List(Of Thing)

[/sourcecode]        
link|improve this answer
1  
This answer really needs more upvotes. Official documentation is here: en.support.wordpress.com/code/posting-source-code – Dan Ling Nov 15 '11 at 3:25
feedback

You can convert the code into html with syntax highlighting before posting it to your blog. For example in vim you can use the :TOhtml command.

Also you can use GeSHi . The WordPress plugin WP-Syntax uses GeSHi, but you can also use GeSHi offline.

link|improve this answer
In Emacs you can use M-x htmlfontify-buffer to achieve the same effect. It uses your Emacs color scheme by default, but should be easy to customize because it uses css for the actual styling. – Tikhon Jelvis Jul 23 '11 at 4:40
feedback

As a few people have already mentioned, I use SyntaxHighlighter on my blog. The only issue I had with it is that my markup wouldn't be valid if I followed the instructions from the SyntaxHighlighter usage wiki. To fix this problem I added some simple jQuery code before SyntaxHighlighter scans my document:

$(document).ready(function() {
    $('pre.code').attr('name', 'code').removeClass('code');
    dp.SyntaxHighlighter.ClipboardSwf = 'clipboard.swf URL';
    dp.SyntaxHighlighter.HighlightAll('code');
});

Instead of adding the name="code" attribute to my <pre/> tags, I add a 'code' class to my pre tags before I add my language attribute so my class attribute looks like this:

 <pre class="code css">

 </pre>

And my javascript code adds the 'name' attribute and removes the 'code' class dynamically so that my markup validates and works flawlessly with SyntaxHighlighter.

link|improve this answer
feedback

Mango Blog and BlogCFC both support code blocks out of the box, using the code tag:

<code></code>

Both are CFML applications, so you'll either have to get some ColdFusion hosting, or run one of the open source alternative engines: Railo, OpenBD, (and it's there, but probably not full-featured enough to run these apps: The Smith Project)

link|improve this answer
feedback

I use and recommend WordPress. You can start off with a hosted WordPress blog and move it off to another hosting provider if you want to take advantage of the great number of plug-ins available. With a hosted blog, you can only use the plug-ins that WordPress makes available to you.

...and use Windows Live Writer for writing/publishing. There are several nice code formatting plug-ins available for WLW.

link|improve this answer
feedback

I use WordPress with the "Code Markup" plugin. It has worked really well. You just surround the code in your posts with

<pre><code>code here</code></pre>

link|improve this answer
feedback

How about BlogTrog Code Window?

link|improve this answer
feedback

I use Gist on my wordpress site. I tried the other Syntax highlighting plugins, but they never quite worked as well as I wanted.

link|improve this answer
feedback

It doesn't exist as standard, being somewhat niche, but there are plenty of nice scripts out there to help format. The best one I've seen (which is what Yahoo! use on their YUI pages) is SyntaxHighlighter.

Of course, given how nice the Stack Overflow boxes are for doing code, you might want to look at how they do things and "port" it to Blogger ;)

link|improve this answer
feedback

I second Yaakov Ellis - I personally use Windows Live Writer and Insert Code.

link|improve this answer
feedback

I really got into PHP programming thanks to Wordpress and would recommend it in a heartbeat. Active developer community, plugins and tutorials galore and it's a cinch to install.

link|improve this answer
feedback

copy and paste into word from visual studio. Then from word, copy and paste into your blog.

link|improve this answer
feedback

I use Chyrp because it's lightweight and easy to use. For code formatting you can use the Geshify module or my own code feather.

link|improve this answer
feedback

CodeHTMLer is a simple program that translates plain text code into a colorized HTML version of the code.

link|improve this answer
feedback

If you use TextMate in Mac OSX, BitButter has a great post on how to display your TextMate code (formatting included) in WordPress.

link|improve this answer
feedback

Code Markup is another Wordpress Plugin.

link|improve this answer
feedback

Squarespace has a really nice admin interface, the best in the industry as far as I am concerned.

link|improve this answer
feedback

I just want to add CodeColorer plugin for wordpress. It works really well. It has an option for escaping html entities and supports a lot of languages. Check you can see it in action on this post

link|improve this answer
feedback

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