
com.github.rahulsom.grooves.asciidoctor.GroovesExtensionRegistry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grooves-diagrams Show documentation
Show all versions of grooves-diagrams Show documentation
Asciidoctor Extension to generate Event Sourcing Diagrams like those on https://rahulsom.github.io/grooves
The newest version!
package com.github.rahulsom.grooves.asciidoctor
import org.asciidoctor.Asciidoctor
import org.asciidoctor.jruby.extension.spi.ExtensionRegistry
/**
* Registers [EventsBlock] as `esdiag`
*
* @author Rahul Somasunderam
*/
class GroovesExtensionRegistry : ExtensionRegistry {
override fun register(asciidoctor: Asciidoctor) {
asciidoctor.javaExtensionRegistry().block("esdiag", EventsBlock::class.java)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy