An open API service indexing awesome lists of open source software.

https://github.com/duologic/kroki-libsonnet

Jsonnet library for Kroki.
https://github.com/duologic/kroki-libsonnet

blockdiag bpmn excalidraw jsonnet jsonnet-lib kroki mermaid

Last synced: 7 months ago
JSON representation

Jsonnet library for Kroki.

Awesome Lists containing this project

README

          

# Kroki jsonnet library

Jsonnet library for https://kroki.io/

## Usage

Install it with jsonnet-bundler:

```console
jb install https://github.com/Duologic/kroki-libsonnet
```

Import into your jsonnet:

```jsonnet
local kroki = import 'github.com/Duologic/kroki-libsonnet/main.libsonnet';

{
kroki:
kroki.new()
+ self.withBlockdiag()
+ self.withBpmn()
+ self.withExcalidraw()
+ self.withMermaid(),
}
```