-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document command line in readme.adoc #567
Comments
The asciidoctorj command works exactly the same way as the asciidoctor command. The only difference is that the command ends in a "j". That's not strictly true, because technically AsciidoctorJ reimplements the cli. However, I still feel strongly that AsciidoctorJ should be delegating to the Asciidoctor cli so it really is the same. See #193. |
Thanks. Just re-read the readme, and it makes more sense now. |
Thanks for compiling this list.
- AsciidoctorJ cannot use Ruby extensions at all, other than the ones it
has built in
This is not true. AsciidoctorJ can load any Ruby script. You just pass a
path to the requires cli flag (-r) or requires API option and it will
execute that script using JRuby. This feeds an extension directly to
Asciidoctor core, bypassing the AsciidoctorJ API. Many people are using
this capability successfully.
There's also a Groovy DSL for writing extensions, but now we're moving
beyond the scope of this topic.
|
Are there instructions for how to render PlantUML with |
It should be similar to the corresponding asciidoctor command:
|
Thanks, @robertpanzer , that command should probably be in the README -- that's really useful. |
I came across #360 while searching for a way to run asciidoc-bibtex AND a Java extension at the same time.
First, can asciidoctorj do this, and what command line would I need?
Second, should the command line be documented in readme.adoc?
The text was updated successfully, but these errors were encountered: