|
www.flickr.com
This is a Flickr badge showing public photos and videos from sagipolley. Make your own badge here.
|
DITA Tip—Where to Put Your FilesIf you are using the DITA Open Toolkit to process your DITA sources, I strongly recommend that you put your source files in a folder under the OT. For example, if you have installed the Toolkit in This makes it a lot easier to use Ant to generate your output. For example, let’s say all your source files are in Just add this
<target name="mymap" depends="use-init">
<antcall target="dita2xhtml">
<param name="args.input" value="mystuff${file.separator}mymap.ditamap"/>
<param name="output.dir" value="mystuff${file.separator}out"/>
<param name="args.xhtml.toc" value="toc"/>
<param name="transtype" value="xhtml"/>
</antcall>
<copy todir="mystuff${file.separator}out">
<fileset dir="${dita.resource.dir}" includes="index.html"/>
</copy>
</target>
Then just type Or if you want a really easy life, just use
|