1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:55:33 +02:00

asciidoctor: add Korean translation (#11405)

This commit is contained in:
HoJeong Im 2023-11-07 13:59:08 +09:00 committed by GitHub
parent 50b96beabd
commit 638de4ce19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# asciidoctor
> AsciiDoc 파일을 게시 가능한 형식으로 변환하는 프로세서.
> 더 많은 정보: <https://docs.asciidoctor.org>.
- 특정 `.adoc` 파일을 HTML(기본 출력 형식)로 변환:
`asciidoctor {{경로/대상/파일.adoc}}`
- 특정 `.adoc` 파일을 HTML로 변환하고 CSS 스타일시트 연결:
`asciidoctor -a stylesheet={{경로/대상/스타일시트.css}} {{경로/대상/파일.adoc}}`
- 특정 `.adoc` 파일을 포함 가능한 HTML로 변환하고, 본문을 제외한 모든 항목을 제거:
`asciidoctor --embedded {{경로/대상/파일.adoc}}`
- `asciidoctor-pdf` 라이브러리를 사용하여 특정 `.adoc` 파일을 PDF로 변환:
`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{경로/대상/파일.adoc}}`