Mobile app version of vmapp.org
Login or Join
Pope3001725

: WYSIWYG vs. BBC Code vs. Plain Text When Putting in a place for users to put it content, (for example, posting a question,answer or comment on this site) What are some things to consider when

@Pope3001725

Posted in: #UserInput #Wysiwyg

When Putting in a place for users to put it content, (for example, posting a question,answer or comment on this site) What are some things to consider when deciding to use some form of WYSIWYG editor, some form of BBC like markup, or just giving users a plain textarea to work with?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Pope3001725

3 Comments

Sorted by latest first Latest Oldest Best

 

@Dunderdale272

Generally, as few options as possible to allow your users to express their ideas. Some sites simply add bold and italic buttons and that works. Any other system will require a certain amount of training. Others to consider are the Markdown and Wikipedia syntaxes. It's also notable that many large sites simply don't allow any additional markup, for example, the Facebook activity stream.

10% popularity Vote Up Vote Down


 

@Caterina187

I've run into SO many problems with Microsoft Word as a UI person who specializes in custom CMS solutions. While many tools out there have "paste from word" features in them, I can't tell you how many times I've gotten calls late at night because a user "forgot" or "refuses" to use that feature. Without additional post-processing to scrub the miles of gibberish that Word pastes can leave behind, I've even seen DB errors caused by an attempt to inject too much data into a record (on a commercially purchased solution I had to support, nonetheless) My solution, in addition to Tidy, is to standardize on CKEditor because it is programmed to strip out Word markup whether the user "pastes from word" or simply drags-and-drops. Additional post processing and escaping is enabled to protect from injection, spelling errors, flagged keywords and disallowed HTML.

If you're going to give the user the ability to add "extras" to input, carefully consider what extras you're going to give them. Out of the box, most editors have quite a bit that they probably shouldn't in the toolbar. For that reason, BBCode has been something I've pondered many many times. However, for some reason I just keep being drawn back to WYSIWYG because of the "awe" factor it gets in sales meetings and its simplicity for the user (when all is well)

10% popularity Vote Up Vote Down


 

@Rivera981

I think SO's minimal editor with markdown syntax has been remarkably effective for the purpose that it serves.

In my opinion, the less HTML you have to deal with in submitted data, the better. Unless users need to organize and post data in tables or something, I really don't see the need for a WYSIWYG editor.

The common tags that you'll want to allow are:

<a>
<blockquote>
<pre>
<b>
<i>
<sup>
<sub>
<ul>
<ol>
<li>
<br>
<img>


Paragraph formatting is easily done on your side. With the exception of a few, markdown or creole can handle pretty much all of that, and validation / sanitation isn't as cumbersome on your end. BBCode is also fine, but not as flexible.

Unless the user is authenticated / trusted somehow, you probably don't want them having at a WYSIWYG editor. Even then, they should be really trusted, beyond just verifying their e-mail or something else that can be trivially accomplished.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme