Add zenuml

This commit is contained in:
Sidharth Vinod
2023-04-23 00:34:59 +05:30
parent 49bb87e14a
commit 12ed81855a
13 changed files with 698 additions and 113 deletions

View File

@@ -0,0 +1,10 @@
// ZenUML manage parsing internally. It uses Antlr4 to parse the DSL.
// The parser is defined in https://github.com/ZenUml/vue-sequence/blob/main/src/parser/index.js
// This is a dummy parser that satisfies the mermaid API logic.
export default {
parser: { yy: {} },
parse: () => {
// no op
},
};