Question
Create a structured book with xml without entites
Hi All, I want to programmatically create a structured FrameMaker book without using entities. Is there an equivalent XML syntax that I can use? I am using XSLT to create the book and I don't want to use entities if I can avoid it. Below is an example of a current book with its entity references. Thank you very much.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE manual SYSTEM "UserManual.dtd" [
<!-- Begin Document Specific Declarations -->
<?Fm Validation Off?>
<!ENTITY bkc1 SYSTEM "GN800042-VGRShreddingMill_UM_cover.e01">
<!ENTITY bkc2 SYSTEM "GN800042-VGRShreddingMill_UM_en-USTOC.e02">
<!ENTITY bkc3 SYSTEM "BP00001.e03">
<!ENTITY bkc4 SYSTEM "BP00010.e04">
<!ENTITY bkc5 SYSTEM "GN800042.e05">
<!ENTITY bkc6 SYSTEM "SC00019.e06">
<!ENTITY bkc7 SYSTEM "SC00090.e07">
<!-- End Document Specific Declarations -->
]>
<?Fm Book?><manual>&bkc1;<toc>&bkc2;</toc>&bkc3;&bkc4;&bkc5;&bkc6;&bkc7;</manual>
