-
|
Some characters like '>' are optionally escaped as of the W3 XML standard. Have I overlooked any option? If not, I think that having this feature would be an enrichment to EMF. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
What is an example of such an inflexible tool that cannot process well-formed XML? (I've never heard of such a thing.) Escaping is done by org.eclipse.emf.ecore.xmi.impl.XMLSaveImpl.Escape.convert(String)/convertText(String) so technically by specializing org.eclipse.emf.ecore.xmi.impl.XMLSaveImpl.init(XMLResource, Map) you could create a subclass that behaves differently. |
Beta Was this translation helpful? Give feedback.
What is an example of such an inflexible tool that cannot process well-formed XML? (I've never heard of such a thing.)
Escaping is done by org.eclipse.emf.ecore.xmi.impl.XMLSaveImpl.Escape.convert(String)/convertText(String) so technically by specializing org.eclipse.emf.ecore.xmi.impl.XMLSaveImpl.init(XMLResource, Map) you could create a subclass that behaves differently.