Preview AsciiDoc using Asciidoctor
I only support macOS.
$ apm install asciidoctor-preview
AsciiDoctor
Open a terminal and type: (without the leading $
)
$ gem install asciidoctor
also install other extensions like asciidoctor/asciidoctor-diagram if needs.
Default command is
asciidoctor --safe-mode unsafe -a lang=ja -b html5 -d book -r asciidoctor-diagram --base-dir {{{baseDirPath}}} -o {{{tempHTMLPath}}} {{{filePath}}}
You can change parameters for asciidoctor
but you need {{{tempHTMLPath}}}
as output and {{{filePath}}}
as input, {{{baseDirPath}}}
as base directory.
Default values
--baseDirPath
-o
This package needs set up commands path. /usr/local/bin/
is default.
Asciidoctor Preview: Toggle
command from Command Pallette. You can also execute it by hitting ctrl-alt-o
on OS X.You can use Update on save
option from Settings If you want to run update preview each time a file is saved.
You can change commnad to use asciidoc
instead of asciidoctor
like this
asciidoc -b html5 -d book -a lang=ja -o {{{tempHTMLPath}}} {{{filePath}}}