mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
492abf37de
Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>
758 B
758 B
asciidoctor
Convert AsciiDoc files to a publishable format. More information: https://docs.asciidoctor.org/asciidoctor/latest/cli/man1/asciidoctor/.
- Convert a specific
.adocfile to HTML (the default output format):
asciidoctor {{path/to/file.adoc}}
- Convert a specific
.adocfile to HTML and link a CSS stylesheet:
asciidoctor {{[-a|--attribute]}} stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}
- Convert a specific
.adocfile to embeddable HTML, removing everything except the body:
asciidoctor {{[-e|--embedded]}} {{path/to/file.adoc}}
- Convert a specific
.adocfile to a PDF using theasciidoctor-pdflibrary:
asciidoctor {{[-b|--backend]}} pdf {{[-r|--require]}} asciidoctor-pdf {{path/to/file.adoc}}