
asciidoctor
List of commands for asciidoctor:
-
asciidoctor:tldr:185af asciidoctor: Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library.$ asciidoctor --backend=${pdf} --require=${asciidoctor-pdf} ${filename-adoc}try on your machineexplain this command
-
asciidoctor:tldr:3aca6 asciidoctor: Convert a specific `.adoc` file to HTML and link a CSS stylesheet.$ asciidoctor -a stylesheet=${path-to-stylesheet-css} ${filename-adoc}try on your machineexplain this command
-
asciidoctor:tldr:3afdf asciidoctor: Convert a specific `.adoc` file to embeddable HTML, removing everything except the body.$ asciidoctor --embedded ${filename-adoc}try on your machineexplain this command
-
asciidoctor:tldr:65105 asciidoctor: Convert a specific `.adoc` file to HTML (the default output format).$ asciidoctor ${filename-adoc}try on your machineexplain this command