0

是否有可能将目录或文件从 org.dita.xhtml 中的“资源”文件夹复制到由 XHTML DITA OT 转换生成的输出文件夹。

如果可以在插件中使用 xsl 更改,则可能的方法是向我提供代码。

任何其他方式都意味着请指导我执行的步骤。

请帮助我。

4

1 回答 1

2

您应该使用depend.preprocess.post扩展点或另一个适合您需要的扩展点来调用新的Ant 目标

插件.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>
于 2017-02-03T13:29:02.667 回答