mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:22:08 +02:00
asciidoctor: add page (#6455)
This commit is contained in:
parent
a5693133f9
commit
f8f6ab6e4f
1 changed files with 20 additions and 0 deletions
20
pages/common/asciidoctor.md
Normal file
20
pages/common/asciidoctor.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# asciidoctor
|
||||||
|
|
||||||
|
> A processor that converts 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}}`
|
Loading…
Add table
Reference in a new issue