All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rahulsom.grooves.asciidoctor.GroovesExtensionRegistry.kt Maven / Gradle / Ivy

Go to download

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