Dear All,
I have a program that uses XSL-FO (org.apache.fop.apps.Driver) to generate a PDF print out from an XML file.
I'm working on the Stylesheets (xsl) & I'm trying to make the debugging easier. I have the XML & the XSL file, now I just want my editor to show me the generated PDF as I'm working on the XSL file.
I tried several editors & they gave errors that the program doesn't seem to have a problem with.
it seems that the problem is that the editor expects to see :
<ATTRVALUE attribute_id="92" attrname="Date Required" attr_value="" />
while the actual XML the program generates is
<ATTRVALUE attribute_id="92" attrname="Date Required" attr_value />
As you can see the empty attr_value is plainly missing the ="" - is there a way for me to make the editor less strict? So it can generate the PDF just like the program I have does?