HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

asciidoctor — Convert AsciiDoc files to a publishable format. More information: <https://docs.asciidoctor.org/asci

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandformatfilespublishableconvertasciidoctorcliasciidoc

Problem

How to use the asciidoctor command: Convert AsciiDoc files to a publishable format. More information: <https://docs.asciidoctor.org/asciidoctor/latest/cli/man1/asciidoctor/>.

Solution

asciidoctor — Convert AsciiDoc files to a publishable format. More information: <https://docs.asciidoctor.org/asciidoctor/latest/cli/man1/asciidoctor/>.

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|--attribute]}} stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}


Convert a specific .adoc file to embeddable HTML, removing everything except the body:
asciidoctor {{[-e|--embedded]}} {{path/to/file.adoc}}


Convert a specific .adoc file to a PDF using the asciidoctor-pdf library:
asciidoctor {{[-b|--backend]}} pdf {{[-r|--require]}} asciidoctor-pdf {{path/to/file.adoc}}

Code Snippets

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|--attribute]}} stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}

Convert a specific `.adoc` file to embeddable HTML, removing everything except the body

asciidoctor {{[-e|--embedded]}} {{path/to/file.adoc}}

Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library

asciidoctor {{[-b|--backend]}} pdf {{[-r|--require]}} asciidoctor-pdf {{path/to/file.adoc}}

Context

tldr-pages: common/asciidoctor

Revisions (0)

No revisions yet.