6

Is there a c# library that can help to write and indent Javascript code.

It's because I'm writing some c# code that generated some Javascript code. Something like this :

js += "<script type=\"text/javascript\">\n";
js += "   function()...\n";

And I find that generated a lot of ugly code.

So, I thought that maybe a existing library can help me doing that ?

Justin Johnson
  • 30,978
  • 7
  • 65
  • 89
Melursus
  • 10,328
  • 19
  • 69
  • 103
  • 2
    Perhaps it would be easier to write out unformatted code then simply run the result through a beautifier (tons of these available online). – Max Shawabkeh Mar 19 '10 at 02:12

2 Answers2

2

I just found this.

http://projects.nikhilk.net/ScriptSharp

Daniel A. White
  • 187,200
  • 47
  • 362
  • 445
0

ScriptSharp looks interesting but has a fairly high learning curve.

I wrote this a long time ago which is simple and was popular at the time (which amused me because I wrote it to simplify some other articles rather than as an article in its own right). Don't know how well it stands up nowadays though; I haven't used it in a long time. I prefer to keep scripts out in their own files now.

pdr
  • 6,372
  • 1
  • 29
  • 38