Reputation: 3462
I am looking for a Html rendering engine that has:
Support in a good designer tool that helps me with the syntax, understand my objects (warns me of type errors and non existing names of classes/methods) and validate my Html.
A nice readable way of mixing Html markup with common programming syntax, for each, if then
Support for sub - templates / functions (in the same file or in another file) which themselves use the same syntax
Possibility to use variables the common way, a = 1 ... a = a + b ... if a > c ...
Support for larger commonly used class libraries / mature languages (.Net / Java / RoR / Django / Php etc)
Produce pure clean markup
I think that's basically it ... Shouldn't be so hard I think, but I haven't found the perfect one yet.
Upvotes: 4
Views: 868
Reputation: 8141
You might want to check 'ASP.NET MVC' out.
Perhaps you don't like the style of programming or you don't like Microsoft (I know I don't :-)) but they might actually have a winner with this framework, it is very clean. Add to that the powerful Visual Studio 2010 and you are good to go. Besides that, Stackoverflow is written in it.
There are some good videos around to introduce you to the framework. The ones by Scott Hanselmann and Scott Guthrie got me on my feet pretty quick.
Upvotes: 1
Reputation: 5
Kompozer
For WYSIWYG and basic html: kompozer.net
Notepad++ <-- I like this one more
For advanced, pure code: http://notepad-plus-plus.org
And both are free :)
Upvotes: 0