Hi Kristen, The main build file for processing PDFs with Antenna House:
DITA-OT/plugins/org.dita.pdf2/build_axf.xml
looks at the environmental variable "AXF_OPT":
<condition property="has.axf.option">
<and>
<not><equals arg1="${env.AXF_OPT}" arg2=""/></not>
<available file="${env.AXF_OPT}"/>
</and>
</condition>
to see if it should give the "-i" flag when running Antenna House:
<target name="transform.fo2pdf.ah.hasoption" if="has.axf.option">
<exec executable="${axf.cmd}" resultproperty="errCode" logerror="true">
<arg value="-d"/>
<arg value="${pdf2.temp.dir}/topic.fo"/>
<arg value="-o"/>
<arg value="${outputFile}"/>
<arg value="-p"/>
<arg value="${axf.formatter.output-format}"/>
<arg value="-extlevel"/>
<arg value="4"/>
<arg value="-peb"/>
<arg value="1"/>
<arg value="-i"/>
<arg value="${env.AXF_OPT}"/>
</exec>
</target>
So probably you need to set that variable in the process which starts DITA OT.
--
You received this message because you are subscribed to the Google Groups "DITA-OT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dita-ot-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to dita-ot-user...@googlegroups.com.