- Similar to guy on the other thread, I don't like DreamWeaver (at least for simple tasks.) But I want a simple WYSIWYG HTML editor, for creating simple, well, HTML pages.
- Brackets is a lightweight, yet powerful, modern text editor. We blend visual tools into the editor so you get the right amount of help when you want it. With new features and extensions released every 3-4 weeks, it's like getting presents all year long.
Ten WYSIWYG HTML editors for Mac OS X (Updated) Steven. Then you'll find this list of Mac HTML editors to be very useful. Flux (£69.95) is a fairly powerful CSS / Javascript / HTML editor.
You can make a strong argument for hand-coding HTML, but the appeal of a What You See Is What You Get editor for beginners is undeniable. Here's a look at five of the most popular WYSIWYG HTML editing tools.
Photo by ilco.
Earlier this week we asked you to share your favorite WYSIWYG HTML editor; now we're back to showcase the five most popular responses. Many of these editors combine the best of both worlds, allowing you to hand edit your code if you wish and work with the WYSIWYG editor when it's more convenient.
Advertisement
Best WYSIWYG HTML Editor?
In the early days of the internet, building web sites meant rolling up your sleeves and going elbow …
Read more ReadNote: If a specific feature or file-type support is critical to your selection choice, you may want to check out the detailed charts at Wikipedia outlining features of various HTML editors and then double check it against the editor's web site and documentation
Advertisement
Kompozer (Windows/Mac/Linux, Free)
Javascript Html Editor Control
Advertisement
Kompozer has a lot going for it, foremost of which is the free-as-in-beer price tag. Kompozer sports tabbed editing—WYSIWYG in one tab, raw HTML in the other—on-the-fly editing via the built-in FTP site manager, and a highly customizable interface with easily modified toolbars. Kompozer has a markup cleaner and a W3C call function to validate your HTML against current standards. It's free, available on Windows, Mac, and Linux machines, and it has a strong focus on standards compliance and clean code.
iWeb (Mac, $99 for iLife bundle)
Advertisement
The 'It just works!' design philosophy that permeates Apple offerings is strong with iWeb—the WYSIWYG HTML editor bundled with iLife—and interacting with it is so drag-and-drop and user friendly that even your friends least likely to learn HTML could whip together a functioning web site. Apple provides a number of polished templates and dozens of web site widgets that are all a mouse click away. iWeb's built-in site manager makes it easy to publish to multiple sites or just keep a close eye on your ever-expanding digital manifesto.
Adobe Dreamweaver (Windows/Mac, $300)
Advertisement
Dreamweaver is a titan in the WYSIWYG world. Now part of the Adobe portfolio but originally launched by Macromedia, Dreamweaver has offered WYSIWYG editing since 1997 when the web was a maze of tiled backgrounds, electric blue links and blinking GIFs. Dreamweaver offers hybrid editing, you can work completely in WYSIWYG mode without ever seeing a bit of code, you can work directly in the code only switching over to preview your work, or you can work in a dual-pane environment to take advantage of WYSIWYG and hand-coding simultaneously. Dreamweaver is extensible with dozens of free and commercial plugs-ins available for everything from web effects and widgets to shopping carts and image galleries.
Microsoft Expression Web (Windows, $125)
Advertisement
Expression Web is Microsoft's current offering in the WYSIWYG arena (the popular but much maligned FrontPage was retired in 2003). For those of you who associate Microsoft with poor web standards compliance, take comfort knowing that Expression Web has a totally separate engine from Internet Explorer and is compliant with a wide range of current web standards. It shares a lot of features with the other WYSIWYG editors featured here, like highlighting code errors and non-compliant code, a built-in CSS editor, and more, it also stands out for features like search engine optimization—offering you tips and ideas to optimize your sites for better crawling and search engine ranking.
Flux (Mac, $75)
Advertisement
Flux is a Mac-based WYSIWYG editor that has received high praise for being a powerful editor with a reasonable price tag. Flux's interface offers a fine degree of control over editing everything from the margins and padding to over all size of your elements including altering CSS code with simple mouse movements. Flux offers dual-pane editing so you can switch between hand-editing and drag-and-drop editing instantly or just watch the HTML code unfold as you WYSIWYG edit to study what's going on under the hood. Like Dreamweaver, Flux supports third-party plug-ins which are available for download through the Flux application.
Now that you've had a chance to look over the top five contenders for best WYSIWYG editor it's time to cast your vote in the poll below:
Advertisement
Which WYSIWYG HTML Editor Is Best?online surveys
Have a favorite WYSIWYG editor that didn't get a nod here but you think should have? Want to highlight your favorite feature of an editor that did get a nod? Let's hear about it in the comments. If you have an idea for the next Hive Five make sure to shoot us an email at tips@lifehacker.com with 'Hive Five' in the subject line so we give your idea the limelight it deserves.
Advertisement
I'm trying to develop a web application that will allow users to store a small 'about me' section on themselves. For simplicity, I want to use a JS-based editor with the typical formatting features, ie. bold, italics, underline, differing font sizes and colors, etc.
I tried to roll my own, but I found that contentEditable has a nasty habit of producing different tags in different browsers (for example, some insert more br tags than others, some split the paragraphs into p tags differently...), and since storing raw HTML is out of the question for security reasons, I've found it insanely difficult to write a parser that can account for all of these differences and store the output correctly in a standard format (ie. replacing every newline with n for storage is more difficult than one replace operation).
So, are there any text editors out there that work in most/all modern browsers, and more importantly, produce the same tags in every browser so I can parse them all the same way?
Thanks in advance! ^^
4 Answers
I think if you want a WYSIWYG Editor then there's no way around contenteditable. However as the issue is the semantic structure of the HTML then I found a library which will ensure the html is semantic, simple, and clean:
The alternative is what they use here in stackexchange. A inputfield where you can place different tags for formating. phpBB uses simlar approach with BBCode. You'll need a parser server side which you might have to write if you can't find one. More info:
https://code.google.com/p/markdownsharp/ (C#)
http://webcheatsheet.com/javascript/bbcode_editor.php (PHP)
It's so simple and doesn't create any script conflict:
ZacYou can use my rich editor that is created based on JavaScript selection range API natively, and not based on document.execCommand
which behaves different accross browsers.
This rich text editor is designed to be used on public HTML form, so this is suited for you.
I’ve found it insanely difficult to write a parser that can account for all of these differences and store the output correctly in a standard format (ie. replacing every newline with n for storage is more difficult than one replace operation).
The editor simply treat two line break as new <p>
section and single line break as a <br>
. You can easily playing around with them.
Shield UI's WYSIWYG Editor is also a very good editor.