The template property value for my custom widget definition is:
<aside><q>Editable content...</q></aside>
When added to the editor at runtime, the <q> element is not editable. However, if I replace the <q> element with a <p> element, it is editable.
Is there a way to make the <q> element editable, or any desired element, for that matter? Is there somewhere in the documentation where there is a list of the default editable elements?
You can try just adding <q>
You can try just adding <q> to the editable list in the DTD, by adding this line prior to initialializing your editor:
But officially the widget system doesn't support inline editables yet. Here's the new feature ticket: http://dev.ckeditor.com/ticket/10974
P.S. - Are you building a pullquote widget? That's one of the features I've been working on for my current project.