Which HTML WYSIWYG tool do you recommend? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T13:11:45Zhttp://stackoverflow.com/feeds/question/39738http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend4Which HTML WYSIWYG tool do you recommend? Niyaz2008-09-02T15:03:50Z2008-12-05T10:48:42Z
<p>Why?</p>
<p>Which of Microsoft Expression Suite is recommended for developing a web application (no silverlight or WPF support needed).</p>
<p>Which all products available today in the market are standard compliant?</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39741#3974119Answer by FlySwat for Which HTML WYSIWYG tool do you recommend? FlySwat2008-09-02T15:04:50Z2008-09-02T15:04:50Z<p>None.</p>
<p>Real men handcode HTML, even the best WYSIWYG tool is lousy at generating HTML.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39743#397430Answer by Thomas Owens for Which HTML WYSIWYG tool do you recommend? Thomas Owens2008-09-02T15:05:30Z2008-09-02T15:05:30Z<p>I don't know if things changed recently, as I'm not a big web developer, but WYSIWYG editors at one time produced HTML that was both invalid and just plain bad. Unless things have changed and they can not produce correct and perhaps even valid HTML, I would recommend avoiding them.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39754#397542Answer by Eric Z Beard for Which HTML WYSIWYG tool do you recommend? Eric Z Beard2008-09-02T15:11:55Z2008-09-02T15:11:55Z<p>There's nothing good that I know of. You just have to hand-code it.</p>
<p>(rant - This, to me, is the clearest indicator of the failure of CSS. If it's impossible to create an application that can correctly handle WYSIWYG layout, then the underlying technology is lacking. Too bad it's too late to change it now.)</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39860#398600Answer by Stefan for Which HTML WYSIWYG tool do you recommend? Stefan2008-09-02T15:54:28Z2008-09-02T15:54:28Z<p>I also second that it is usually best to hand-code.</p>
<p>There is a now discontinued open-source editor called
<a href="http://en.wikipedia.org/wiki/Nvu" rel="nofollow">Nvu</a> that is at least o.k. as a support for hand-coding (there seem to be successors called <a href="http://en.wikipedia.org/wiki/KompoZer" rel="nofollow">KompoZer</a> and <a href="http://en.wikipedia.org/wiki/Mozilla_Composer" rel="nofollow">Composer</a>)</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39886#398860Answer by Bob Weber for Which HTML WYSIWYG tool do you recommend? Bob Weber2008-09-02T16:05:35Z2008-09-02T16:05:35Z<p>Not sure this is an answer, because I hand code everything as well, but the answers here are interesting. I recently was chastised by a graphic designer/web developer person because I did not use Dreamweaver or GoLive. </p>
<p>Cleaner code can definitely be created by hand editing. I use Vim. But I'm sure if you asked any of the artistic designers our there, Dreamweaver would have a huge majority.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39897#398970Answer by Brian Warshaw for Which HTML WYSIWYG tool do you recommend? Brian Warshaw2008-09-02T16:08:52Z2008-09-02T16:08:52Z<p><a href="http://www.zeldman.com/2008/08/29/siteassist-professional" rel="nofollow">Zeldman</a> recently linked to a new solution. I think it still requires Dreamweaver, but if Zeldman's endorsing it, the standards support is likely quite good.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39901#399012Answer by Nick Berardi for Which HTML WYSIWYG tool do you recommend? Nick Berardi2008-09-02T16:10:08Z2008-09-02T16:10:08Z<p>Depends if you are a designer or developer and really how much you want to spend:</p>
<ul>
<li>Microsoft Expression Web</li>
<li>Microsoft Expression Design</li>
</ul>
<p>Are good for the basics but they do cost money, however if you just want a good HTML web designer, that is FREE</p>
<ul>
<li>Visual Studio Express Web</li>
</ul>
<p>Uses the same core layout engine as Expression Web. If money is no object</p>
<ul>
<li>Microsoft Expression Studio</li>
<li>Microsoft Visual Studio Team Edition</li>
</ul>
<p>Are both good. But if you are a designer type go with the Expression tools, if you are a developer, go with the Visual Studio tools. Both come from the same Visual Studio framework, to make the work interoperable between designers and developers. </p>
<p>Also to answer your other question, about which are popular in todays market, they are the following:</p>
<ol>
<li>Adobe Dreamweaver</li>
<li>Microsoft Expression</li>
<li>Eclipse (and it's many siblings)</li>
<li>Microsoft Visual Studio</li>
</ol>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39904#399041Answer by Mark Biek for Which HTML WYSIWYG tool do you recommend? Mark Biek2008-09-02T16:11:06Z2008-09-02T16:11:06Z<p><a href="http://beta.stackoverflow.com/questions/5833/looking-for-wysiwyg-html-editor" rel="nofollow">looking-for-wysiwyg-html-editor</a> has some interesting looking stuff.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/39973#399731Answer by Cd-MaN for Which HTML WYSIWYG tool do you recommend? Cd-MaN2008-09-02T16:34:05Z2008-09-02T16:34:05Z<p>The answer is (as others have said) "real men handcode HTML", but not because of some ill guided pride, but because:</p>
<ol>
<li>You shouldn't design in your editor (at least not right from the start). Design should be done using an other media (whiteboard, paper, etc). Sitting in front of a monitor really decreases your creativity</li>
<li>If you have something clear in mind, you will spend more time clicking around than you would have writing the code by hand</li>
<li>No editor will help you debug your code (if it doesn't work correctly with a given browser for example), automatically generated code can be (very) hard to understand.</li>
</ol>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/40017#400171Answer by Charles Roper for Which HTML WYSIWYG tool do you recommend? Charles Roper2008-09-02T16:51:16Z2008-09-02T16:51:16Z<p><strong>It is best practice to hand-code, as others have suggested</strong>. It is impossible to have a truly WYSIWYG editor for the web because you cannot truly guarantee the what <strong>you</strong> see is what your <strong>users</strong> will get.</p>
<p><strong>The WYSIWYG editor is going against the grain of the very nature of the web.</strong></p>
<p>Once you accept this and work with it you can start to focus on other important factors such as making sure users can access your content (accessibility); making sure your brand is communicated across a number of different devices and <a href="http://boagworld.com/usability/content_is_dead_long_live_cont/" rel="nofollow">contexts</a>, <em>despite not being able to completely guarantee the look of your site</em>; and making sure your content, copy and semantics are as good as they can possibly be. For these you <em>really</em> need to hand-code, which, when aided by a <a href="http://www.newsgator.com/Individuals/TopStyle/Default.aspx" rel="nofollow">good</a> <a href="http://www.panic.com/coda/" rel="nofollow">HTML/CSS</a> <a href="http://www.e-texteditor.com/" rel="nofollow">editor</a>, is easy to learn and practice.</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/40077#400770Answer by Andy Brice for Which HTML WYSIWYG tool do you recommend? Andy Brice2008-09-02T17:19:28Z2008-09-02T17:19:28Z<p>Nvu and Kompozer are ok, but quite buggy (crashes, typed text appears in the wrong tab etc).</p>
<p>Avoid NetObjects Fusion at all costs (I wish I had).</p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/40103#401030Answer by Dipak Patel for Which HTML WYSIWYG tool do you recommend? Dipak Patel2008-09-02T17:29:23Z2008-09-02T17:29:23Z<p>I had an awful experience trying to make a CSS compliant web-site using Dreamweaver. I tried using the 'design' view as well editing the 'code' view. Either way, nothing (other than the most basic pages) I created would render correctly across Firefox, Safari and IE.</p>
<p>I ended up just hand-coding, and it mostly just worked fine.</p>
<p>I tend to use iWeb for quick and dirty non-important sites, and hand-code the HTML for other projects.</p>
<p>I think Dreamweaver <em>used</em> to be good a long time ago, but now its bloated/cumbersome like Word. </p>
http://stackoverflow.com/questions/39738/which-html-wysiwyg-tool-do-you-recommend/343471#3434710Answer by dandv for Which HTML WYSIWYG tool do you recommend? dandv2008-12-05T10:48:42Z2008-12-05T10:48:42Z<p>Why hand-code, from Wikipedia:</p>
<p><a href="http://en.wikipedia.org/wiki/HTML_editor#Difficulties_in_achieving_WYSIWYG" rel="nofollow">Difficulties in achieving WYSIWYG</a></p>