up vote 2 down vote favorite
5
share [g+] share [fb]

Is there a utility that will generate html or css for blocks of code (.net c#) when you post it on a website?

I have seen several websites with very nicely formatted code and I dont believe they do this manually.

Thanks,

Alex

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Google prettify -

http://code.google.com/p/google-code-prettify/

link|improve this answer
feedback

I prefer Syntax Highlighter implementations (I'm using Wordpress plugin implementation for my blog).

Advantages

  • It is based on JavaScript and does not care about what you have on the server.
  • Posts with this formatting display properly on different RSS feeds and can be copied to clipboard.
  • It is trivial to extend syntax rules. I'm using that to highlight custom operators in Boo-based DSL (see sample post)
  • Multiple languages are supported out-of-the-box

Free syntax highlighter written in Java Script

link|improve this answer
feedback

You can get JavaScript syntax-highlighting scripts, such as this one by Dean Edwards.

This is also a jQuery version apparently based on it which looks good.

link|improve this answer
Pagina no contrada :( – JoshJordan Sep 9 '09 at 13:32
feedback

CopySourceAsHtml is an add-in for Microsoft Visual Studio 2005 that allows you to copy source code, syntax highlighting, and line numbers as HTML.

http://www.jtleigh.com/people/colin/software/CopySourceAsHtml/

It's highly configurable, and works much better than the download page would make you expect! Don't know if there is something similar for VS 2008

If you don't have the ability to add the google prettifier CSS reference, this would be a better way to go, as what you get is a complete HTML with the required style. I use it all the time on our developers wiki, and loving it.

link|improve this answer
feedback

An even better solution, if you don't want to bother installing anything, is to just use the little web app I wrote called BlogTrog CodeWindow:

http://www.blogtrog.com

It's easy to use. Just paste your code and embed the results.

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.