Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 1001 Bytes

docbook_to_html.md

File metadata and controls

11 lines (6 loc) · 1001 Bytes

DocBook to html {#docbook-to-html}

Description {#description}

Process docbook to html within ant script, using DocBook XSL stylesheets.

Html task parameters {#html-task-parameters}

Examples {#examples}

<project name="docbook-ant-task-to-html" default="docbook-to-html"><taskdef name="dbk"classname="net.sourceforge.ant4docbook.taskdefs.DocbookTask"classpath="PATH/TO/ant4docbook.jar"/><target name="docbook-to-html"><dbk file="docbook.xml" tofile="generated-html-file.html" /></target><target name="docbook-to-html-with-many-parameters"><dbk file="docbook.xml" tofile="generated-html-file.html"parameters="html.properties" /></target><target name="docbook-to-html-with-some-parameters"><dbk file="docbook.xml" tofile="generated-html-file.html"><parameter name="section.autolabel" value="1" /><parameter name="toc.section.depth" value="3" /></dbk></target>__</project>