Accessible WYSIWYG editors part 1 – The problem

Interface example of a JavaScript based editor. There is an elephant in the corner type of problem in the accessibility world, even worse than the problems with PDFs. I’d like to outline this problem, and define what a solution would be, even if it doesn’t exist yet.

The problem is with the applications used for editing web content by non-technical authors. Often these are WYSIWYG (What you see is what you get) editors, that provide a Microsoft Word style editor for editing content. No matter how good a site is to start with, if the editor does not produce accessible code it will degrade at every edit.

I’m not covering editors such as Dreamweaver, or even Frontpage, used at the development stage. Roberto Scano covers WYSIWYG (or rather “What You See Is What Only You See”) well in “A Journey Through Accessibility“.

Just assume for the purpose of this article that a site has been set up perfectly, and is updated by non-technical people using a Content Management System (CMS).

Accessible and usable editor

The elephant in the corner, the big problem is that: It is not possible to create an accessible and usable web-based editor.

To qualify that statement, the assumptions are:

  • You want a browser based editor so you can edit from anywhere, possibly on different platforms.
  • Non-technical people need an easy to use web editor, that includes styling text, and adding items like images and tables.
  • You want to produce accessible code that follows the web content accessibility guidelines (WCAG).
  • The editor itself should be accessible, following the authoring tool accessibility guidelines (ATAG).

That seems a reasonable list of assumptions, right?

The problem is that WCAG (version 1) demands that sites should work without scripts or pluggins. You can’t do WYSIWYG without JavaScript (or another script/pluggin) because that functionality requires ‘behaviour’.

One of the standards triumvirates is: structure (including content), style, and behaviour. WCAG version one has several top priority checkpoints that require a site should ‘work’ without style or behaviour, relying on structure and back-end processes.

So what do you do?

There are some seemingly reasonable solutions, such as falling back to a wiki style edit area.

I am a big fan of wikis, for certain uses. However, a typical client with a business or part of a government organisation is not going to learn the markup. I find it straightforward, but links, images and tables just scupper this approach for most people. Some examples of formatting on Wikipedia:

Link to Google: [http://www.google.com/ Google search engine]
Inserting an image: [[Image:filename.png]]
A four cell table:

{| border="1" cellspacing="0" cellpadding="5" align="center"
! This
! is
|- 
| a
| table
|-
|}

Using a wiki style editor just isn’t as usable as a WYSIWYG editor (it would be very easy to prove with time-taken and error rate usability tests). You have to remember the syntax rather than just selecting something (e.g. “heading”), and you would probably have to go elsewhere to upload an image, remember it’s name and location, and type it in. On a simple site with a technical user group, that might not matter, but for a client it does.

As part of our CMS development, we decided to default to the WYSIWYG text editor by default, and unhide the text editor if a client wanted it. That hasn’t happened yet.

One of our clients is the British Computer Association of the Blind, and still no requests for the text editor. There are some aspects of our editor that needed overhauling for screen readers, but sighted or not we use one editor for all as it is the most usable option for all.

Technically inaccessible, but best solution?

We could set up the fall back text-based editor for a client, but it is unlikely to come up. The WYSIWYG editor we use isn’t perfect, but it’s the best option.

The part of the update to WCAG I was looking forward to was the ability to say for a particular web application that “this uses JavaScript, but is accessible for people with disabilities”. How screen readers deal with JavaScript needs investigation, but use of JavaScript doesn’t necessarily affect people with disabilities, when done well.

What is the perfect (accessible) WYSIWYG editor?

There is a long list of requirements, in WYSIWYG editor spec, I will outline the requirements for a usable, accessible editor (code output, keyboard accessibility etc.).

Later posts will compare several of the popular browser-based editors against the requirements.


Tags:

5 contributions to “Accessible WYSIWYG editors part 1 – The problem

  1. Nice intro to the series. This is something I think many of us have thought about for some time now.

    I reckon that a perfect solution is probably nigh on impossible. However, something I’ve been wanting to do is provide a fallback syntax that’s fairly easy to learn (something like Textile or Markdown) and use JavaScript to provide a WYSIWYG preview of the content.

    Rich Pedley’s already done a good job using Markdown:
    http://www.quirm.net/category.php?id=20

    Another part of me says that why find a replacement for HTML’s job?

  2. Thanks, I know it’s an issue for many people.

    Unfortunately, I don’t think the best textile interface is easy enough for all. Why should people using a screen reader, with keyboard only access, or with cognitive issues have to remember a particular syntax, or have to upload images separately?

    I don’t think it’s impossible to create a good WYSIWYG editor, but the people creating them try to do too much, adding too much functionality that requires inline markup. I hope to spec out how that should work. It’s going to be more than three posts though! (Slight change of plan.)

  3. Alastair, I agree with you. Why should anybody learn another syntax? But then, how do you provide formatting without it? That’s of course considering tha possibility that JavaScript is not available. The only way I can think of doing it is through a flexible form-based system where you build a page based on form controls added at a user’s request depending on how they want a page built (I hope that makes some kind of sense – sorry, I didn’t explain it very well).

    I’ve recently seen a JavaScript editor that’s pretty good at going back to basics, using simple formatting only. But I seem to remember that it still requires the user to build a heirarchy of headings. I like the idea of relative heirarchy building and letting a CMS figure out what level of it should be.

    Looking forward to posts to follow.

  4. I had a look at some basic accessibility issues with some of the more commonly found WYSIWYG editors in the article Evaluation of WYSIWYG-editors back in March. From the discussion it sounded like many of the developers were about to include more accessibility features in their editor components.

    I am looking forward to your forthcomning posts in this area. I really hope you find that they have progressed in some way.

  5. Hi Peter,

    I wish I had seen your article earlier, I may have covered some similar territory.

    Still, I hope exploring the potential solutions/interfaces has helped.

    I’ve been looking mostly at FCKeditor, TinyMCE & Xstandard so far, are they a representative bunch?

Comments are closed.