PDFreactor:
3.0.3311 (2008-07-07)
edit-on Pro:
5.3.228 (2008-12-04)
edit-on JavaBean SDK:
5.3.310 (2008-10-24)
TYPO3 Extension:
2.0.2 (2007-06-14)
2.8 Why is a SAXParseException thrown, when rendering HTML documents exported from Microsoft Word?
Microsoft Word HTML documents contain namespaces, which raise a SAXParseException. In order to render such documents correctly, the following code must be added to the document:
1. Add namespace definition for the namespace prefixes for the according elements, e.g. for <o:p> and <v:x> elements:
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" lang="de">
2. Add these styles to your CSS in order to hide certain elements, e.g. for <o:p> and <v:x> elements (this step is optional):
@namespace o "urn:schemas-microsoft-com:office:office";
@namespace v "urn:schemas-microsoft-com:vml";
o|* { display: none }
v|* { display: none }
Overview of Office 2003 namespaces: