是否可以为 docbkx-maven-plugin 设置自定义 XLST 文件?

发布于 2024-12-02 13:20:20 字数 59 浏览 1 评论 0原文

Docbook Maven Plugin 似乎正在使用它自己的 XSLT 转换。是否可以强迫自己转变呢?

It seems that Docbook Maven Plugin is using its own XSLT transformation. Is it possible to force my own transformation to it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随风而去 2024-12-09 13:20:20

docbkx 提供的自定义与 docbook 相同。我想您只是想拥有自己的自定义层来导入 docbook xsls。

这当然是可能的。请参阅http://blog.kasunbg。 org/2010/12/how-to-use-docbkx-tools-as-maven.html

它提供了如何使用 docbkx-maven-plugin 的详细指南具有您自己的定制层。

这是配置      

<configuration>
      <foCustomization>src/docbkx/xsl/fo.xsl</foCustomization>
      <xhtmlCustomization>src/docbkx/xsl/xhtml.xsl </xhtmlCustomization>
</configuration>              

The customizations docbkx provides is same as docbook. I guess you just want to have your own customization layer that imports the docbook xsls.

This is of course possible. See http://blog.kasunbg.org/2010/12/how-to-use-docbkx-tools-as-maven.html

It provides a detailed guide on how to use docbkx-maven-plugin with your own customization layer.

Here's the configuration      

<configuration>
      <foCustomization>src/docbkx/xsl/fo.xsl</foCustomization>
      <xhtmlCustomization>src/docbkx/xsl/xhtml.xsl </xhtmlCustomization>
</configuration>              
迷鸟归林 2024-12-09 13:20:20

此外,如果您想自定义 webhelp 输出,您可以使用以下配置元素

<configuration>
  <webhelpCustomization>src/docbkx/xsl/webhelp.xsl</webhelpCustomization>

Additionally if you want to customize webhelp output you would use the following configuration element

<configuration>
  <webhelpCustomization>src/docbkx/xsl/webhelp.xsl</webhelpCustomization>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文