views:

365

answers:

6

Hello,

I would like to know if anyone knows of an online service where we paste the code and it generates back the colored html source code for that code. It could be PHP, HTML, CSS, Javascript, C, Java.

Idea is that once i have the colored html code, i could easily put that in my wordpress.com blog. I know about [sourcecode language="whatever"] but just wanted to know an online service that supports multiple languages. The benefit is that, i can choose any color style/theme from that online service for my code.

Thanks

+4  A: 

CodeColorizer is one.

SLaks
+3  A: 

Do you mean code pasting services such as Pastie?

Esko
+4  A: 

Also you can use http://tohtml.com/html/ or GeSHi

voodoo555
+10  A: 

Prettify is the code colorizer that StackOverflow uses.

Zach Johnson
+6  A: 

You may want to look at SyntaxHighligher. It uses JavaScript so it's not using your own server's resources and supports a bunch of color schemes. http://alexgorbatchev.com/wiki/SyntaxHighlighter

The problem with putting your code in a generator on another website is that if you change it somewhere you have to put it back in, which can become tedious.

Peeps
+1  A: 

I use WP-syntax for WordPress. Works great for me. It's not exactly what you are looking for but I thought I'd mention it here if anyone is looking for syntax hightlighting in WordPress. From the usage description:

Wrap code blocks with <pre lang="LANGUAGE" line="1"> and </pre> where LANGUAGE is a GeSHi supported language syntax. The line attribute is optional.

windyjonas