Parse error: whitespace required (found ">")
Posted: Wed Feb 23, 2005 2:48 pm
I am using XEP to transform a large document to PDF. The transform to PDF works fine with the default settings... but if I go into the "Configure transformation scenario" and add in an HTML header (using the "Append header and footer" button) and try to transform again, I get this error:
The HTML I'm trying to use as a header is pretty simple:
So... what's going wrong here? Is there some special syntax required for the HTML header function?
Code: Select all
[error] Fatal parse error: file:/home/ccornell/doc/xml/manual.doc_xslt: line 1, column 62: whitespace required (found ">")
Parse error: whitespace required (found ">")
Process ended with exit code: 1
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Logo</title>
</head>
<body>
<img
style="width: 100px; height: 50px;" src="logo.jpg">
</body>
</html>