Source Beautifier Function
-
I'm looking for two functions that can take a snippet of VB.NET or C# code, and convert it to nicely formatted code in HTML with syntax highlighting. string VBtoHTML(string code); string CStoHTML(string code); The purpose is to use it in discussion forums, support messages, and knowledge base browser on our website. Is anything like this available?
-
I'm looking for two functions that can take a snippet of VB.NET or C# code, and convert it to nicely formatted code in HTML with syntax highlighting. string VBtoHTML(string code); string CStoHTML(string code); The purpose is to use it in discussion forums, support messages, and knowledge base browser on our website. Is anything like this available?
Try http://www.codeproject.com/jscript/highlight.asp[^] and http://www.codeproject.com/csharp/highlightcs.asp[^] by Jonathan de Halleux. "If only one person knows the truth, it is still the truth." - Mahatma Gandhi Web - Blog - RSS - Math
-
I'm looking for two functions that can take a snippet of VB.NET or C# code, and convert it to nicely formatted code in HTML with syntax highlighting. string VBtoHTML(string code); string CStoHTML(string code); The purpose is to use it in discussion forums, support messages, and knowledge base browser on our website. Is anything like this available?