2019-03-19 09:09:54 +00:00
|
|
|
|
# xsltproc
|
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
|
> 用 XSLT 转换 XML 以生成输出(通常是 HTML 或 XML)。
|
2022-01-29 20:17:39 +00:00
|
|
|
|
> 更多信息:<http://www.xmlsoft.org/xslt/xsltproc.html>.
|
2019-03-19 09:09:54 +00:00
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
|
- 使用特定的 XSLT 样式表转换 XML 文件:
|
2019-03-19 09:09:54 +00:00
|
|
|
|
|
2019-10-20 03:34:33 +01:00
|
|
|
|
`xsltproc --output {{输出.html}} {{样式表.xslt}} {{xml 文件.xml}}`
|
2019-03-19 09:09:54 +00:00
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
|
- 将值传递给样式表中的参数:
|
2019-03-19 09:09:54 +00:00
|
|
|
|
|
2019-10-20 03:34:33 +01:00
|
|
|
|
`xsltproc --output {{输出.html}} --stringparam {{键名}} {{值}} {{样式表.xslt}} {{xml 文件.xml}}`
|