Skip to content

Commit

Permalink
Add DBML support (#401)
Browse files Browse the repository at this point in the history
Co-authored-by: Bruno Obsomer <[email protected]>
  • Loading branch information
bobzomer and Bruno Obsomer authored Jan 25, 2023
1 parent f37f6c0 commit 5c0442b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/node_modules/
.asciidoctor/kroki
.idea/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ Kroki currently supports the following diagram libraries:
* [BPMN](https://github.com/bpmn-io/bpmn-js): `bpmn`
* [Bytefield](https://github.com/Deep-Symmetry/bytefield-svg/): `bytefield`
* [C4 (PlantUML)](https://github.com/RicardoNiepel/C4-PlantUML): `c4plantuml`
* [DBML](https://www.dbml.org/home/): `dbml`
* [Ditaa](http://ditaa.sourceforge.net): `ditaa`
* [ERD](https://github.com/BurntSushi/erd): `erd`
* [Excalidraw](https://github.com/excalidraw/excalidraw): `excalidraw`
Expand Down
3 changes: 2 additions & 1 deletion dist/browser/asciidoctor-kroki.js
Original file line number Diff line number Diff line change
Expand Up @@ -13106,7 +13106,7 @@ var IncomingMessage = exports.IncomingMessage = function (xhr, response, mode, r
self.url = response.url
self.statusCode = response.status
self.statusMessage = response.statusText

response.headers.forEach(function (header, key){
self.headers[key.toLowerCase()] = header
self.rawHeaders.push(key, header)
Expand Down Expand Up @@ -18508,6 +18508,7 @@ module.exports.register = function register (registry, context = {}) {
'bpmn',
'bytefield',
'c4plantuml',
'dbml',
'ditaa',
'erd',
'excalidraw',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ module Kroki
bpmn
bytefield
c4plantuml
dbml
ditaa
erd
excalidraw
Expand Down
1 change: 1 addition & 0 deletions src/asciidoctor-kroki.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ module.exports.register = function register (registry, context = {}) {
'bpmn',
'bytefield',
'c4plantuml',
'dbml',
'ditaa',
'erd',
'excalidraw',
Expand Down

0 comments on commit 5c0442b

Please sign in to comment.