osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)

This commit is contained in:
코드싸이
2024-11-12 04:54:15 +09:00
committed by GitHub
parent 3c745bfaae
commit f5003bb990
202 changed files with 3796 additions and 1 deletions

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

@@ -0,0 +1,12 @@
# xsltproc
> XSLT를 사용하여 XML을 변환하여 출력(주로 HTML 또는 XML)을 생성합니다.
> 더 많은 정보: <http://www.xmlsoft.org/xslt/xsltproc.html>.
- 특정 XSLT 스타일시트를 사용하여 XML 파일 변환:
`xsltproc --output {{경로/대상/출력_파일.html}} {{경로/대상/스타일시트_파일.xslt}} {{경로/대상/파일.xml}}`
- 스타일시트의 매개변수에 값을 전달:
`xsltproc --output {{경로/대상/출력_파일.html}} --stringparam "{{이름}}" "{{값}}" {{경로/대상/스타일시트_파일.xslt}} {{경로/대상/xml_파일.xml}}`