Open
Description
Asciidoctor (Ruby) allows to register both class and instance. Registering an instance can be useful when you want to pass additional options.
Consider the following example:
class GoogleSlidesConverterRegistry : ConverterRegistry {
override fun register(asciidoctor: Asciidoctor) {
val googleSlidesConverter = GoogleSlidesConverter("googleslides", mapOf("credentials-path" to "/path/to/credentials.json"))
asciidoctor.javaConverterRegistry().register(googleSlidesConverter, "googleslides")
}
}
In this example, the converter needs a credentials file to authenticate with the Google Slides API.
Metadata
Metadata
Assignees
Labels
No labels