add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

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