I am processing my XHTML source using the xhtml.xsl stylesheet by
AntennaHouse. Like a previous poster here, I am only getting back the text
from the XHTML file, no markup of any kind (xhtml, fo, or otherwise). My
XHTML file looks something like this...
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www/w3/org/1999/xhtml">
<body>
<vcl_unit>
<table>
<tr>
<td>
<h2>Who Wants To Be A Millionaire?</h2>
</td>
</tr>
</table>
</vcl_unit>
</body>
</html>
But my output looks like this...
<?xml version="1.0" encoding="utf-8"?>Who Wants To Be A Millionaire?
My guess is I'm missing a namespace declaration somewhere, but I don't know
what I need. I've tried replacing the <html> tag with a <doc> tag as well.
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--