vote up 33 vote down star
10

When I started programming web pages, it became immediately obvious that the WYSIWYG editors sucked. The html output was difficult to maintain, did things in ways you may not agreed with, completely messed up existing pages if opened, couldn't handle code in the page, and was polluted with dead or irrelevant code like <font ...></font>

At that time, I didn't know a single programmer with more than 6 months experience who didn't hand code their HTML. Even now, most of the developers I know hand code their HTML.

But, I also realize this was a decade ago, WYSIWYG editors have improved, and I may be seriously underproductive hand coding my HTML.

Do you, as a web programmer, use WYSIWYG editors for your HTML?

PS-I'm kind of thinking we can just vote either YES or NO, and put comments below.

flag
show 5 more comments

66 Answers

1 2 3 next
vote up 0 vote down

Handcoding. If you looking for errors in your and you code it with an WYSIWYG editor ... then good luck

link|flag
vote up 2 vote down

I don't feel any necessity of heavy and sometimes slow software to produce 'dirty' code. For that reason I do hand code.

link|flag
vote up 0 vote down

I think hand-coding is probably the most common answer. I don't really think using a WYSIWYG editor is helpful unless you're developing a Dreamweaver template for a client or trying to test something in a specific environment.

That being said, I still prefer to speed up my tasks by using at least some level of IDE, if not just a modified text editor. When I worked at a marketing firm, everyone used Panic! Coda, since everyone was on a mac laptop. Now doing internal web dev for a bigger firm, I spend about 90% of my time in VIM, and 10% in notepad++.

For freelance work I use Dreamweaver CS4, but I spend 99.9% of my time in code view, switching to design view to check on things as I go, but then doing all of my actual browser testing in-browser for every platform.

link|flag
vote up 0 vote down

Hand code.

I learned HTML back in 1994 and have been hand coding all my coding since. I can't stand WYSIWYG editors. I've tried dreamweaver, but found that aside from the general layout of the page, if I want anything to display correctly, I would have to go over the automated codes myself and edit them to make sure the website displays the way I want them to look.

link|flag
vote up 2 vote down

I like auto-complete. My head is free to focus on the solution instead of dancing with syntax.

link|flag
vote up 0 vote down

I'd rather user a text editor and a browser anyday, rather than a WYSIWYG editor. Because you have more control, less pointless/depreciated mark-up and I like valid HTML/CSS! :D

link|flag
vote up 0 vote down

Hand-code for the most part, though the UI (Visual Studio) is handy for adding events to server controls; a double-click saves writing out the method signature and wiring it up..

link|flag
vote up 0 vote down

Hand code.

link|flag
vote up 1 vote down

I think you will find that both designers who are any good and all real developers hand code. Still, because dreamweaver has really good handle of html, it is one of the best editors for html. I don't think I switched to design view in years and mostly because it is not useful at all as it don't display details that are different between firefox and ie, and increasingly new browser like chrome and safari.

link|flag
vote up 1 vote down

Hand Code.

link|flag
vote up 0 vote down

both. Hand code, and use the wysiwyg for previews. also us FireBug for other layout and weird css things. using VS2008. it has it's ups and downs, slow, but at times but can be powerful with all the inbuilt ms asp .net crap that goes with it, but... also limited with that built in stuff too.

link|flag
vote up 0 vote down

I hand code my HTML/CSS and so does every web developer/designer I know of.

link|flag
vote up 0 vote down

I use the VS 2008 split view feature so that I can visually see my horrible design ability come to life. I'll be honest, I may cheat and drop some items in from the toolbar to save some time, but manually editing gives you total control.

link|flag
vote up 1 vote down

A combination.

It´s impossible to use a WYSIWYG editor to design / develop a modern web-site, hand coding is the only way to go.

However, a program like dreamweaver is very useful to rapidly paste and format content, especially if that content has lots of accented characters or other kinds of characters that need to be translated to have a web-site that validates.

Not all web-sites are in plain English. I have even added pages in Japanese and that definitely would have taken me a very long time using just a text editor.

Every tool has its use, as long as you know how to use it well.

link|flag
vote up 0 vote down

Hand code, but I'm amazed that someone hasn't addressed this problem and made a tool that helps instead of hinders. Some smart person out there will do it someday.

link|flag
vote up 0 vote down

I can't use WYSIWYG. I get so excited when i'm coding, so i can't take that pleasure away.

link|flag
vote up 0 vote down

I do hand code, for me is faster and clearer that wysiwyg

link|flag
vote up 0 vote down

By hand.

WYSIWYG cannot show you what it looks like across a range of browsers, displays, hand-helds, etc. So don't give yourself a false sense of confidence by using a WYSIWYG tool.

Write HTML that validates, test it with as many browsers and devices you can get your hands on, use screenshots.org to supplement.

The proof is in the pudding and they only "WYS" that means anything at all is in the browser.

link|flag
vote up 2 vote down

Almost all professionally-done HTML I've come across was clearly not done in a WYSIWYG. That's not to say that I am against WYSIWYGs. I guess you can make a nice page about your wife and your dog and your children with iWeb or so. And that is not evil.

I think the reason is that HTML encourages the separation of content and layout a lot. If you separate wisely, you are rewarded with small download sizes, beautiful HTML code, easy maintainability, ease of changing the layout, or mending it, and so forth. (Side note: This separation of content and layout works so much better in HTML than in LaTeX, for me.)

cheers,

niko

link|flag
vote up 0 vote down

Hand coding is the way to go. You'll learn a lot more by making mistakes and finding solutions than you will by pointing and clicking in a WSYWIG.

link|flag
vote up 0 vote down

Can't speak for "most," but I and the other web devs in our shop hand code our logic (PHP, Django, etc.) As far as UI is concerned, we take a Photoshop mock-up and build up our CSS and HTML layout to match as close as possible.

So, NO.

link|flag
vote up 0 vote down

Well I'll admit it, I use Dreamweaver. To write the HTML I don't want to write. I don't use it for CSS though. Or any scripting language (DW's PHP is ancient). But page layouts, prototyping - mostly whatI use DW for. And until everyone stops using IE6, I still use tables too. So there. ;)

I've also written and sold extensions for DW. And they've sold VERY well. I suspect many use a WYSIWYG editor and don't want to admit it.

link|flag
vote up 0 vote down

A combination. I always structure the page by hand, but I use Visual Studio to move those absolutely positioned divs until the page looks good. You have to be very careful about what you do in a WYSIWYG editor, though, one false move and your page is a mess. Fortunately, VS is quite good at not modifying parts of the page that you didn't touch.

link|flag
vote up 0 vote down

Handcode with Dreamweaver. Don't use the wysiwyg side of it.. Has a good auto-suggest that works as it should.. If I ever need to see it in design mode I can have a look.

link|flag
vote up 0 vote down

I handcode. I use textmate. Its snippets help me to be very productive.

link|flag
vote up 0 vote down

I tried using Frontpage, but quickly got rid of it when I saw the horrible markup it produced.

I had used Dreamweaver for awhile because it produces arguably better markup, and has syntax highlighting when you're in HTML editor mode. I wouldn't recommend this for someone who is trying to learn HTML. I would liken Dreamweaver to any tool that developers use to quickly prototype a GUI interface. It's fine if you already know what you're doing, but don't use it as a crutch.

I currently use Aptana Studio because it has good code highlighting for HTML and CSS, and it supports the Python PyDev plugin.

link|flag
vote up 2 vote down

I tend to use a mixture of both. With ASP.NET I'll hand code much of the underlying structure of the page (Divs and such) and after that I'll fill in controls using the WYSIWYG and then go back into the source view and hand code over it to make sure it is exactly how I want it before finalizing.

link|flag
show 1 more comment
vote up 0 vote down

Both serve a purpose, and I think it silly to commit one way or the other. You have to look at the task at hand and choose the best tool for the job. I do hand-code more than using a WYSIWYG ... but for putting together a prototype of mock-up ... you can't beat a WYSIWYG when you are pinched for time.

link|flag
vote up 0 vote down

Hand-code, unless I only have a Notepad-like text editor available, but Dreamweaver is installed - which unfortunately is the case in a lot of schools :(.

link|flag
vote up 4 vote down

For every task there is a tool... even if it isn't cool

Among freelancers (no corporate experience, here, alas), most nearly all markup and styling is done (surprise!) in text editors, but I know not a single freelancer who doesn't sport a copy of Dreamweaver or somesuch as well, and not just for working with existing sites.

Especially when it comes to creating large or complex tables (or dealing with sites coded in table layouts), counting tags to find that one cell is mind-numbing and slow. Occasionally it is also faster to drag-and-drop or copy-and-paste data from documents or pre-existing sites into a WYSIWYHYG to fiddle with, or build a table structure from scratch where you can see it as you go, and then snip the resulting HTML back into TextMate or vim or whatever.

Of course you'll do your CSS by hand, because cross-browser CSS is something people can barely do, much less teach computers to do, but sometimes the "WYSIWYG"s are just the right tool.

link|flag
show 4 more comments
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.