I have an MVC3 web app allowing team members to post and share code snippets. It currently uses PageDown (client-side) and MarkdownSharp (server-side) to handle the text in "markdown" text for persistence. So far so good.
I want to implement syntax highlighting for the C# code rendered from markdown. Anyone know how?
Just to be explicit, I want to do this client-side if at all possible.