template_xhtml.xml 1.0 KB

1234567891011121314151617181920212223242526
  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. <!--
  4. | basedir can be specified to other places base on your need.
  5. |
  6. | Note: input, output, and temp directories will base on the basedir if
  7. | they are relative paths.
  8. * -->
  9. <project name="@PROJECT.NAME@_xhtml" default="@DELIVERABLE.NAME@2xhtml" basedir=".">
  10. <!-- dita.dir should point to the toolkit's root directory -->
  11. <property name="dita.dir" location="${basedir}${file.separator}..${file.separator}..${file.separator}.."/>
  12. <target name="@DELIVERABLE.NAME@2xhtml">
  13. <ant antfile="${dita.dir}${file.separator}build.xml">
  14. <!-- please refer to the toolkit's document for supported parameters, and
  15. specify them base on your needs -->
  16. <property name="args.input" location="@DITA.INPUT@"/>
  17. <property name="output.dir" location="@OUTPUT.DIR@"/>
  18. <property name="transtype" value="xhtml"/>
  19. </ant>
  20. </target>
  21. </project>