1

I am trying to generate xhtml from dita using the ID Workbench (which works fine =)), but I also need to have every generated html file with a snippet of Javascript at the top of it. This javascript will be the same for every file.

Is there a way to add this in somehow? I can't seem to find any answers?

4

2 回答 2

2

我记得,ID Workbench 使用开放工具包来生成输出,尽管有一些自定义。这些步骤适用于开放式工具包,不需要创建自定义,并且应该也适用于 ID Workbench。

  1. 使用您需要添加的 javascript 创建一个文件,并包含在标签中。例如:

    <script type="text/javascript"><!--
        window.alert("Hello world!");
    --></script>
    

    此文件必须格式正确,否则将不会被使用。

  2. 添加以下构建参数之一,具体取决于您是否需要将代码段包含在 HTML<head><body>.

    • 包括在<head>args.hdf="path_to_snippet"
    • 包括在<body>args.hdr="path_to_snippet"
  3. 构建您的 XHTML。

于 2013-03-28T14:02:45.380 回答
1

您必须创建自定义才能以官方方式进行。我对工作台不够熟悉,无法告诉你如何集成它。不要害怕创建自己的后处理,在创建 html 文件后添加 javascript。

于 2012-03-20T17:05:06.953 回答