1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/asciidoctor.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

20 lines
680 B
Markdown

# asciidoctor
> Convert AsciiDoc files to a publishable format.
> More information: <https://docs.asciidoctor.org>.
- Convert a specific `.adoc` file to HTML (the default output format):
`asciidoctor {{path/to/file.adoc}}`
- Convert a specific `.adoc` file to HTML and link a CSS stylesheet:
`asciidoctor -a stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}`
- Convert a specific `.adoc` file to embeddable HTML, removing everything except the body:
`asciidoctor --embedded {{path/to/file.adoc}}`
- Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library:
`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{path/to/file.adoc}}`