views:

111

answers:

10

I am looking for a WYSIWYG editor for my intranet users. It should not show or give them a html option, instead it should have buttons for stuff like bold, italic, bullets, comments, font colour, html links, etc etc.

Which WYSIWYG editor would be best for these needs?

+3  A: 

Try CKEditor but be warned: WYSIWYG is a bit overrated since what you see might not be what you want or mean, especially since you can't see everything. Example:

Hello <b>bold</b>!

If the cursor is to the left of the first "b" and you type a single character: Will it be bold or not? What if you are to the left of the "!"?

Aaron Digulla
you beat me to it!
scunliffe
I'd add a similar warning -- all the WYSIWYG controls suffer from this. Plus the whole WYSIWYG concept is at odds with creating good quality HTML code. When I've provided them to end users to customise their site content, the resulting HTML has always been horrible, no matter which control they're using and in whatever browser. They ignore the stylesheets I've set up; they use manual spacing and hard-coded bullet points instead of `<li>` lists... and then they complain because their code doesn't look the same in all browsers. Grrrr.
Spudley
+6  A: 

What about using TinyMCE editor? You also have a jQuery plugin...

romaintaz
+1  A: 

I'd agree tinyMCE is the best one I've used

DJ Forth
+2  A: 

What about Google Closure Library's Editor?

It's highly customizable... but not exactly the easiest to use as a standalone component though.

So what about the old and venerable but still functional HtmlArea?

haylem
A: 

In CKEditor ,the file(images) upload functions is only available for payed user.

Liuliu
A: 

I suggest FCKeditor/CKeditor, it is easy to use, look at the documentation and demos.

Nervo Verdezoto
A: 

Or something similar to this site, which is a nice editor:

http://wmd-editor.com/

This is a WYSIWYM (What you see is what you mean) editor (apparently).

Paddy
A: 

I always liked SPAW Editor.

Sadly it doesn't seem to have had much new development work in the last year or two, so not sure if it's still an active project, but it's still a pretty good piece of software.

Spudley
+1  A: 

NicEdit is also a small and good alternative.

t0ken
Is it possible to get this to upload images to my own server instead of imageshack?
oshirowanen
No unfortunately not, but you can link to an image in your webfolder with the url function. Otherwise you have to write an additional script to upload the images.
t0ken