Hi
I'm using the editor to produce some text that will be inserted into an xml-structure and sent to a printer service for previewing a physical form. So the final data sent to the server is e.g.
When I type my text I get the expected
But, å ä ö aren't recognized xml entities so I need to do some manual operations before proceeding.
Is there some combination of cofiguration options that will produce
Right now I use
FCKConfig.ProcessHTMLEntities = false ;
FCKConfig.ProcessNumericEntities = true ;
which produces å etc.
Regards,
Christian
I'm using the editor to produce some text that will be inserted into an xml-structure and sent to a printer service for previewing a physical form. So the final data sent to the server is e.g.
<form><address>mmm</address><name>John Doe</name><notes>The code from FCKEditor</notes></form>.
When I type my text I get the expected
<p>This is a trial text with some international and xml-special chars < & å ä ö</p>
But, å ä ö aren't recognized xml entities so I need to do some manual operations before proceeding.
Is there some combination of cofiguration options that will produce
<p>This is a trial text with some international and xml-special chars < & å ä ö</p>or the utf-8 equivalent?
Right now I use
FCKConfig.ProcessHTMLEntities = false ;
FCKConfig.ProcessNumericEntities = true ;
which produces å etc.
Regards,
Christian