2021-09-03 13:09:11 -07:00
|
|
|
# asciidoctor
|
|
|
|
|
2024-02-14 17:25:13 -03:00
|
|
|
> Convert AsciiDoc files to a publishable format.
|
2021-09-03 13:09:11 -07:00
|
|
|
> 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:
|
|
|
|
|
2025-04-22 15:48:30 +03:00
|
|
|
`asciidoctor {{[-a|--attribute]}} stylesheet {{path/to/stylesheet.css}} {{path/to/file.adoc}}`
|
2021-09-03 13:09:11 -07:00
|
|
|
|
|
|
|
- Convert a specific `.adoc` file to embeddable HTML, removing everything except the body:
|
|
|
|
|
2025-04-22 15:48:30 +03:00
|
|
|
`asciidoctor {{[-e|--embedded]}} {{path/to/file.adoc}}`
|
2021-09-03 13:09:11 -07:00
|
|
|
|
|
|
|
- Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library:
|
|
|
|
|
2025-04-22 15:48:30 +03:00
|
|
|
`asciidoctor {{[-b|--backend]}} {{pdf}} {{[-r|--require ]}}{{asciidoctor-pdf}} {{path/to/file.adoc}}`
|