vote up 4 vote down star
2

Duplicate of What is best blogging host for programmers code formatting


This is wikied because its not really an important question :)

In any case, I'd like to create a programming blog, but I don't have a lot experience in this area. All I'm looking for is a blog host with the following characteristics:

  • Supports syntax highlighting. Should be able to support a variety of languages, including Python, OCaml, C#, VB.NET, Ruby, and whatever else I feel like posting.

  • Won't mangle source code. Examples of mangling:

    • I've heard that Wordpress chokes on <'s and >'s, because it interprets it as HTML, resulting in incorrectly formatted output. Some other blogs actually remove unrecognized or malformatted "HTML" from the post, so they actually delete chunks of sourcecode as well, resulting in completely mangled output.
    • Wordpress also convert's single quotes (') and double quotes (") to "pretty" quotes (‘’, “”), resulting in code with illegal characters.
    • Some syntax highlighters prevent users from copy/pasting code verbatim. You've probably seen how you can copy code in Visual Studio or Netbeans, then something rips in the spacetime continuum which prevents you from pasting the code into Word or Gmail.

If a blog will give me that much, I'll be happy :)

Does anyone have any good suggestions for starting a programming blog?

flag
Duplicate: stackoverflow.com/questions/9051/… – S.Lott Jan 30 at 14:37

closed as exact duplicate by Rich B, ZombieSheep, EBGreen, S.Lott Jan 30 at 14:38

4 Answers

vote up 2 vote down

For syntax highlighting I would suggest google-code-prettify

link|flag
That's awesome... that is most of the work right there. – Birk Jan 30 at 14:37
vote up 0 vote down

I think alot of this will be up to you. When you input your code you'll put it in

<pre>
<!--code goes here-->
</pre>

tags. If you look at the syntax highlighting on SO they wrap everything in spans and whatnot to get the colors to work.

If you're wanting to post html you'll need to use &lt; and &lgt;. If there is some software that does all of this for you I'd really like to know, but I'm pretty sure to some degree (even if its writing it) its up to you.

Edit** That Prettify code is awesome.

There is no reason you cant use any old blogging software and that JavaScript and have a solid programming blog.

link|flag
vote up 2 vote down

One could always do the geeky thing and write their own like I did (Which is a royal PITA), though most use an open-source solution in their technology of choice. Some don't even bother constraining themselves as such, so ASP.NET Web Developers go with PHP or some such, which seems counterproductive IMHO.

I'm a .NET guy myself. Some in my area include:

BlogEngine.NET
Subtext
Das Blog

And remember, if it doesn't do what you want, enhance it!

link|flag
vote up 0 vote down

Write your own?

fwiw, I'm doing this now myself as an exercise in learning new tech, and whilst it's not fast (given that I have a full time job), I'll be damned if it's not educational, and when it does go live it'll do whatever I want it to.

link|flag

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