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

vote up 0 vote down

Handcoding. Always superior - especially when you deal with CSS and Javascript.

link|flag
vote up 1 vote down

Hand code HTML & CSS, but inevitably use Firefox Web Developer toolbar to edit CSS with a real-time display.

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

iam fond of ms expression web

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

I would argue that creating static HTML files (the only thing that most WYSIWYG tools even claim to do) is "design" work, not "programming" work.

For actual "web programming" (i.e., writing software which receives input and uses it to produce HTML pages as output), templating systems are the only way to go. I create my templates by hand and would do so even if there were WYSIWYG tools out there which worked directly with the templating systems I use. On the rare occasion that I need to create a static page, I also do that by hand.

link|flag
show 1 more comment
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 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 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 1 vote down

Hand Code.

link|flag
vote up 1 vote down

hand-code.

an WYSIWYG editor might come in handy though, when all I want to do is to create table layouts to be used in an environment where CSS support is unreliable, for example, email contents.

link|flag
vote up 1 vote down

Hand Code 110%.

link|flag
vote up 0 vote down

If you are creating any web application or page that spans more then a couple HTML files, you will be way more productive by using a templating system (which one - is typically dependent on the programming language you use, or, if you are not really doing dynamic pages - whatever is available on the server).

The reason is that in order to achieve consistent look for your pages, you will have lots of repeating blocks of HTML (interspersed with code in dynamic pages). Partially this is solved by CSS, however, in any kind of dynamic pages you will need to include mixed HTML/code snippets in other pages. A templating system allows you to extract the repeating blocks in seperate files and insert them where needed, thus reducing need to re-edit tons of files, if you have to change something globally.

A typical example in PHP, which does not actually use any templating system, just the built-in PHP possibilities, is:

<html>
<? include('../templates/header.php'); ?>
<body>
my html and php mix goes here
</body>
<? include('../templates/footer.php'); ?>
</html>

The advantage is, obviously, that if you need to change something in the web page header in all your pages, you change that in just the header file.

I do not know any WYSIWYG editor that supports any templating system (not to speak of arbitrary templating systems) well enough to render the result accurately, especially if you wish to add programming language code.

link|flag
vote up 3 vote down

hand code, hands down ;)

link|flag
show 1 more comment
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
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 0 vote down
  • Web designers sometimes use WYSIWYG to get to high fidelity mock-ups quicker.
  • WYSIWYG is also used by SMEs and functionality people to quickly communicate an idea visually.
  • Good developers would never use, and will never use, WYSIWYG because all that a WYSIWYG can capture is a visual drawing of a web page. A web site needs to be well structured, from a mark-up perspective, in order to reduce the amount of work required to implement the near endless stream of visual changes called for in a successful web site. That good structure is not based on visual layout du jour. Rather, it is based on the structure of the data itself. Try to use CSS as much as possible to do the proper layout. That way, changes down the road will be easier because all you have to do is change the one CSS file instead of making similar changes to every web page. You'll never be able to accomplish that with WYSIWYG. See CSS Zen Garden for information on this.
link|flag
show 1 more comment
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

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 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 at 7:27
show 1 more comment
vote up 0 vote down

I don't see why any web programmer would use a wysiwyg editor, especially if there's going to be code embedded in the HTML. It just seems more efficient to me to code while HTMLing.

Notepad++ and (W|L)AMP for me.

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

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 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 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 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

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 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 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 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 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

Your Answer

Get an OpenID
or

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