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 131 vote down check

HAND CODE - I never use a WYSIWYG editor.

link|flag
4  
Is it that uncommon to use Dreamweaver and still do all of the code by hand? You can simply ignore the WYSIWYG editor feature if it offends you and enjoy all of the other features. – Rowan Jan 4 at 15:03
2  
WYSIWYG for HTML makes my skin crawl. >.< – Ben Blank Feb 6 at 14:51
1  
I've worked with a lot of developers over the last 10 years or so, and the good ones all hand code. So using a WYSIWYG tool is probably a good indicator of that "it's just a job" mentality. – chris Mar 6 at 2:26
show 12 more comments
vote up 74 vote down

Hand code.

Frankly I look down on developers that don't.

The reason is that I've never met someone who uses a WYSIWYG editor that has a firm understanding of web semantics and how to use XHTML/CSS properly. Sure a lot of you are going to say "I use Dreamweaver but I could reproduce the same with Notepad" but the fact of the matter is that these are the types of people that just slap images and spacer.gif images into a table to create a layout and don't understand why that's not the best way to do things. These are the types of people who think doing things properly are a waste of time and as long as it looks decent on the browser they're using (which coincidentally is most likely to be MSIE) they'll move on and say I'm wasting my time making sure my tags are used correctly in the semantic sense and using browsershots.org to ensure it looks close enough to what I want on ALL browsers.

link|flag
1  
even if you're right :) – annakata Jan 2 '09 at 12:19
5  
@Simon: He gave his reason why: "The reason is that I've never met someone who uses a WYSIWYG editor that has a firm understanding of web semantics and how to use XHTML/CSS properly.", and he's quite correct about this statement. – Dave Jan 4 at 12:57
2  
@EnderMB, and more often then not a lot developers do not understand the first thing about web semantics or valid XML documents – Andrew G. Johnson Jan 5 at 6:04
show 15 more comments
vote up 31 vote down

Hand code, but whenever possible, not from scratch. I try to find something that is similar, then "transform" it into what I want.

link|flag
9  
This is pretty common and a great way to not only do things quickly (it's the snippet approach) but also passively learn more about it by seeing how other people do things. Software is, for the most part, evolutionary. – Nick Gerakines Jan 2 '09 at 7:27
show 1 more comment
vote up 11 vote down

I hard-code all my HTML cause using a WYSIWYG writer is near about impossible for writing pretty CSS... For example take the auto-styling feature in VS 2008. If you've got a table and you drag your mouse by mistake, it will automatically create a style for you like - Style1 and add it to your browser's stylesheet.

This sort of behavior is very pesky, and that's exactly what a good programmer wants to avoid, cause it's NOT at all helpful.

So I hard-code my page, and then preview it in the designer (or the browser).

But I like using WYSIWYG editors for the quick preview (loading in the browser takes more time).

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

I use C-x M-c M-butterfly.

Not really (but I would). I use hand-coded HTML (plus HtmlHelper extension methods in ASP.NET MVC). Sometimes in ASP.NET WebForms I will use the VS designer for things like data sources and setting up bound controls, but that's really about all I find useful in it.

link|flag
vote up 7 vote down

I do both: WYSIWYG & hand coding for different reasons.

I often use a WYSIWYG for adding a lot of text to a website (so it adds p tags and deals with weird Word characters) or if I have an absolute positioned div for which I want to drag to position that div (and then I hand code the exact position).

Otherwise, I will usually hand code the actual HTML "template" of the site or any other tweaks needed.

But, I do use a WYSIWYG for the autocomplete--it makes writing the HTML faster and I don't have to search the internet all the time for the exact property. Depending on the WYSIWYG, it can also help find something in the mass of HTML that results: click on the image and it's highlighted in the HTML.

link|flag
1  
This is really the best way to do things. Get the control of hand-coding combined with the productivity of wysiwyg. Templates are essential (template system in DreamWeaver, master pages in ASP.Net 2.0+). – sfuqua Jan 2 '09 at 16:49
1  
+1, WYSIWYG editors are NOT the spawn of Satan. They do basic text processing perfectly well. I often use them to create paragraphs, lists and some basic formatting, then copy-paste the code into my text editor. WYSIWYG editors are also good for auto-indentation. – DisgruntledGoat Jul 10 at 12:33
vote up 5 vote down

Hand code with some sort of preview mechanism. I use TextMate for the most part so preview in [browser of choice] is just a hot-key away.

link|flag
vote up 4 vote down

Hand code, absolutely. I hate editors.

link|flag
3  
<smartass>What, then, do you write your code in if not an editor?</smartass> – Ben Blank Jan 5 at 17:32
show 1 more comment
vote up 4 vote down

Hand code. It's not that I'm snobbish about it; I excitedly try every new graphical/WYSIWYG web-development tool/IDE I can get my hands on because I would love to someday find a tool that helps me be more productive. But after a few weeks of fighting against the latest and greatest editors, I always come back to hand coding with Notepad++ or jEdit.

link|flag
vote up 4 vote down

Keyboard coded... my screen get's all ugly when I try to code with my hands.

link|flag
vote up 4 vote down

Hand coding is the best option, because WYSWIG editors can too easily create extra unnecessary markup and cause failures in validation.

On the other hand some of the junior developers at my work use Dreamweaver's server behaviors to write PHP and ASP for them.

link|flag
show 2 more comments
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
vote up 3 vote down

WYSIWYG-I almost always or always use a WYSIWYG editor

link|flag
1  
It seems you're the only one here who has answered WYSIWYG. I'm curious: why? – strager Jan 2 '09 at 7:27
1  
Oh, nevermind -- I realize the intent of this post. Up-vote this if this is your answer, I see, and the "HAND CODE" one if you're in that bracket. =] – strager Jan 2 '09 at 7:45
vote up 3 vote down

NO

Programmers who value control over simplicity, programmers that do a lot of CSS, programmers that have experienced too many wastes of time debugging code that was generated FOR them... when they could have written it themselves and saved time in the long run.

I have experienced, that many novice ASP.NET programmers using the WebForms style framework are more likely to use a WYSIWYG editor... because it is handed to them, and they're used to making WinForms apps. As they develop their skills they will likely move on to the handwritten code. That is if they ever want to get any better at what they do.

I'm not certain there has ever been a scientific inquiry as to what the ratio is. Those who prefer the WYSIWYG as opposed to those who don't. Sadly I cannot answer that portion of your question.

link|flag
vote up 3 vote down

hand code, hands down ;)

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

Why not designers too? Designers don't just work in Photoshop and they're not code-illiterate. Your questions should be directed at designers as well, as I'm sure there are plenty of designers who will surf here given the overlap between design and development in web development.

Every good designer and developer that I have ever met hand codes all HTML, CSS, and usually JS as well barring use of libraries such as jQuery and MooTools. Still, even then they write all their own jQuery by hand as well.

Unless by some miracle the companies proliferating WYSIWYG editors decide to acknowledge what standard markup is and why it is important, stay away from such atrocities. Not only that, but they would need to spend the money to have their editors output standard abiding code in a way that is at least somewhat reliable.

Until that mystical, miracle day - WYSIWYG: Die in a fire.

link|flag
vote up 2 vote down

I hand code.

I went through a brief period of using a WYSIWYG editor... but when it comes down to it the amount of overhead that it requires for the few benefits you can get can all be replaced with a solid text editor that supports saved code snippets and syntax coloring. Don't let people lie to you and say WYSIWYG's speed up development - because if you are using the right editor, it's not a problem.

link|flag
vote up 2 vote down

iam fond of ms expression web

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 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 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 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 1 vote down

Hand code is the only real method for me...

link|flag
vote up 1 vote down

Yeah, hand code it here too. About the only time I use the editor in visual studio is when I can't remember a tag name... just drag it onto the pane, go back into code view and cut/paste it where I really wanted it.

link|flag
vote up 1 vote down

Hand code with notepad++ and preview via browsing.

I feel i have more control this way without having to worry about some IDE sneak meta data into my html. Plus i have that ease at mind knowing that i code this baby myself.

link|flag
vote up 1 vote down

Handcode. The primary reason is at the end of the day, with a wysiwyg, I find myself ending up with many more more undesired effect.

link|flag
vote up 1 vote down

If you're just doing plain HTML pages, it might make sense to use a WYSIWYG editor. But when I tried them back in the 90s' just just became frustrating because it wouldn't do "what I wanted". They might be better these days, but since it's so easy for me to write HTML by hand quickly, I don't feel like I really even need to be more productive.

And of course if you're going to write code to generate HTML, or modify the DOM using javascript it would be pretty difficult to use a WYSIWYG editor for that.

link|flag
vote up 1 vote down

I always hand code HTML/XHTML .. its really not a slow process once you get used to doing it. I don't use WYSIWYG because:

  • Many toss in extra markup or clobber my indentation
  • It takes me longer (in many cases) to figure out how to get the editor to do what I want it to do vs just writing it myself.
  • I almost never use tables, or other tags which editors simplify

Even when writing programs, I use a VERY minimal editor that has agreeable syntax highlighting and a snippet library, that's all I enable. I really don't care for code completion / suggestion , etc .. especially on trees where I have 300 + open files in tabs.

link|flag
vote up 1 vote down

I hand-code most of the time

See, the thing is, in web development, no single file ever holds the entire page, I use a template system and organize files so that there's a root template (holds stuff common to all pages), and other files extending by injecting various stuff in various blocks. So, a wysiwyg doesn't even make sense really.

I have to admit though, sometimes I use a wysiwyg as a reference, say, if I want to create a certain look and I'm not sure how to make it by myself, I create a draft in the wysiwyg (usually ExpressionWeb) and look at the generated code to take some ideas.

link|flag
vote up 1 vote down

Hand coded. I sometimes use the output of a WYSIWYG editor that someone else (a graphic designer) has used. But I always clean up the result and make it as clean and compliant as possible (while still maintaining the formatting.)

link|flag
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.