xsltproc: add Spanish translation (#10195)

pull/23/head
Darío Hereñú 2023-05-19 15:36:27 -03:00 committed by GitHub
parent d917a8a1a0
commit 1f548ae41b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
pages.es/osx/xsltproc.md Normal file
View File

@ -0,0 +1,12 @@
# xsltproc
> Transforma XML con XSLT para producir una salida (normalmente HTML o XML).
> Más información: <http://www.xmlsoft.org/xslt/xsltproc.html>.
- Transforma un archivo XML con una hoja de estilos XSLT específica:
`xsltproc --output {{ruta/al/archivo_salida.html}} {{ruta/al/archivo_hoja_estilo.xslt}} {{ruta/al/archivo.xml}}`
- Pasa un valor a un parámetro de la hoja de estilos:
`xsltproc --output {{ruta/al/archivo_salida.html}} --stringparam "{{nombre}}" "{{value}}" {{ruta/al/archivo_hoja_estilo.xslt}} {{ruta/al/archivo_xml.xml}}`