• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

good, free html editor needed

 
town drunk
( and author)
Posts: 4118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm looking for a good, free WYSIWYG html editor. CSS support is crucial, js debugging would be a great-to-have. Any suggestions? I haven't been in the front-end world for a long time.

best,
M
 
Ranch Hand
Posts: 1847
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Never found one that even comes close to your specs, whether free or commercial.

I instead write everything by hand the old fashioned way, using VI (not joking).
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guess I fall somewhere in the middle. I ain't gonna let any WYSIWYG tool write my code for me, but I don't want to have to fight with my editor either.

I really like Homesite. Not free, but relatively cheap. Helps you write HTML without getting in your way.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are not going to find JS debugging an an editor. But if you want to debug JavaScript you need to use Firefox with the venkman debugger and use the Firebug extension.

MS has the JavaScript Debugger, but it is not worth trying to figure that out since they want you to use Visual Studio to do it and stopped supporting it.

Google has an editor, but people say the markup on it is really bad. Most WYSIWYG editors lack on CSS front. Plus I have not used a WYSIWYG editor in ages since I use Edit Plus 2 and notepad.

Eric
[ June 12, 2006: Message edited by: Eric Pascarello ]
 
Max Habibi
town drunk
( and author)
Posts: 4118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's disappointing the html editors haven't progressed tremendously since..well, since I was Eric's age.

M
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
They have, you just have to pay big bucks for dreamweaver.

Eric
 
Max Habibi
town drunk
( and author)
Posts: 4118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not so sure, Eric: at least the free ones don't seem to have done so. I'm thinking DW about $400?

Eric, Bear: do you guys think it's a worthwhile investment for a hobbyist?

M
[ June 13, 2006: Message edited by: Max Habibi ]
 
Ranch Hand
Posts: 1061
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Weaverslave and Phase 5 are good Freeware Editors. For JS-Debugging: Firefox console
cb
 
Ranch Hand
Posts: 1241
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When I do web development, I tend to stick to a combination of Edit Plus 2 and Firefox/IE (its amazing how many pages look completely different in one browser to another when CSS comes into the mix). I can never quite trust a WYSIWYG editor - I'm paranoid that they'll just produce a file full of junk code. I expect that many can produce decent code, but I can't trust a machine to be as elegant as a human.

I'm yet to find one which will let me step through JavaScript code though. That would be extremely useful. Obviously more useful (and satisfying) would be the complete destruction of that travesty of a "language" and for it's writers to be locked up in stocks for a month while we can throw soggy bits of paper covered in JavaScript errors at them.
 
Ranch Hand
Posts: 3143
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HTML-Kit, not a WYSIWYG but has tonnes of plug-ins, most of which I haven't looked at so maybe it's now an option.
 
Bartender
Posts: 1155
20
Mac OS X IntelliJ IDE Oracle Spring VI Editor Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The open source NVU HTML editor is worth a look.
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Anybody tried WebDwarf??
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Dave Lenton:
I'm yet to find one which will let me step through JavaScript code though. That would be extremely useful. Obviously more useful (and satisfying) would be the complete destruction of that travesty of a "language" and for it's writers to be locked up in stocks for a month while we can throw soggy bits of paper covered in JavaScript errors at them.




You better download Firebug!

Eric
 
Dave Lenton
Ranch Hand
Posts: 1241
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Eric Pascarello:
You better download Firebug!

Eric

Aha! That looks worth a look, cheers.
 
Ranch Hand
Posts: 137
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
try this
 
Ranch Hand
Posts: 516
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Microsoft got a tool called Visual web developer, as per the name, it might do the things you wants. try and let me know, and if u give it 95+ marks, i'll not worry to give a try

http://msdn.microsoft.com/vstudio/express/vwd/
 
What are your superhero powers? Go ahead and try them on this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic