sample_html5.xml 870 B

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