Jan Bares wrote: > > how can I enter character entities such as ® © in XXE?
* Use the Character tool. * OR use command insertCharByName http://www.xmlmind.com/xmleditor/_distrib/docs/commands/ch06s25.html This command is not bound to a keystroke, you need to add something like this in an XXE configuration file (example: customize.xxe) to use it: --- <!-- ================================================================ Inserts at caret position a character specified using its entity name. Add parameter="[DocBook]" to use the character entities defined in the DocBook 4.2 DTD, whatever is the DTD/Schema of the document being edited. ================================================================= --> <binding> <keyPressed code="ESCAPE" /> <charTyped char="C" /> <command name="insertCharByName" /> </binding> --- This solves the character *input problem*. Now, if you want to get " " "®" "©" in the files created by XXE, please read this: http://www.xmlmind.com/xmleditor/_distrib/docs/help/ar01s06s01.html#saveOptions --> Save characters outside encoding as entity references --> Always save these characters as entity references

