Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is anyone aware of any hosted blog engine (like wordpress.com for example) that supports writing posts in Markdown, and also supports code highlighting?

share|improve this question
Jan, have you found anything since January ? – Denis Jul 19 '10 at 15:25
Nada unfortunately – Jan Jongboom Jul 20 '10 at 9:20
start a bounty ? Many blogs have code with notes / essays, there must be a market for making such easily a la SO – Denis Jul 20 '10 at 13:41

closed as not constructive by gnat, EdChum, A.V, Roman C, Yan Sklyarenko Feb 25 at 9:30

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 4 down vote accepted

I don't know if there is any such list. The only engine I've personally seen with such integration is Posterous, where you have to add something like #!language just above your code.

As for Markdown-powered blog engine list, here's the most comprehensive I've seen (via). There is however no mention of code highlighting integration.

share|improve this answer

You can try to use http://calepin.co/

share|improve this answer

There's always Tumblr or Posterous.

share|improve this answer
Highlighting isn't integrated in Tumblr. – Tshepang Jan 23 '11 at 16:05

I haven't found one yet but if you really want you can set it up yourself it is not difficult.

I use markdown that highlights code via Pygments (using built in plugin - works out of the box). It's easy to dump css for highlighting from pygments and update for example blogger css.

I use python version of markdown:

import markdown
html = markdown.markdown(text,['codehilite'])

Then you can just prepare your blog in markdown and parse it through script on your pc and upload the html version to blog, see here how to do it on Blogger.

share|improve this answer

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