是否可能将目录或文件从org.dita.xhtml中的'resource'文件夹复制到XHTML DITA OT生成的输出文件夹。
如果可以在插件中使用xsl更改,则可能的方法为我提供代码。
有任何其他方式,请指导我做的步骤。
请帮助我。
答案 0 :(得分:1)
您应该使用depend.preprocess.post扩展点或其他符合您需求的扩展点来呼叫a new Ant target。
<强>的plugin.xml 强>
<plugin id="com.example.extendchunk">
<feature extension="depend.preprocess.post" value="copyfiles"/>
<feature extension="dita.conductor.target.relative" file="myAntStuffWrapper.xml"/>
</plugin>
<强> myAntStuffWrapper.xml 强>
<dummy>
<import file="myAntStuff.xml"/>
</dummy>
<强> myAntStuff.xml 强>
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="myAntStuff">
<target name="copyfiles">
<copy todir="foo">
<fileset>
<include name="**/*.bar"/>
</fileset>
</copy>
</target>
</project>