| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!--This file is part of the DITA Open Toolkit project. See the accompanying LICENSE.md file for applicable licenses.-->
- <project name="sample_xhtml" default="samples.web" basedir=".">
- <property name="dita.dir" location="${basedir}/../../.."/>
- <target name="samples.web" description="build the samples for the web" depends="clean.samples.web">
- <ant antfile="${dita.dir}/build.xml">
- <property name="args.input" location="${dita.dir}/samples/hierarchy.ditamap"/>
- <property name="output.dir" location="${dita.dir}/out/samples/web"/>
- <property name="args.xhtml.toc" value="toc"/>
- <property name="transtype" value="html5"/>
- </ant>
- </target>
- <target name="clean.samples.web" description="remove the sample web output">
- <delete dir="${dita.dir}/out/samples/web"/>
- </target>
- </project>
|