Files
tldr/pages.zh/osx/xsltproc.md
2024-01-01 10:38:53 +01:00

13 lines
427 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# xsltproc
> 用 XSLT 转换 XML 以生成输出(通常是 HTML 或 XML
> 更多信息:<http://www.xmlsoft.org/xslt/xsltproc.html>.
- 使用特定的 XSLT 样式表转换 XML 文件:
`xsltproc --output {{输出.html}} {{样式表.xslt}} {{xml 文件.xml}}`
- 将值传递给样式表中的参数:
`xsltproc --output {{输出.html}} --stringparam "{{键名}}" "{{值}}" {{样式表.xslt}} {{xml 文件.xml}}`