Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding unit testing #9

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions toolchains/xslt-proto-v04/mermaid-diagram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
graph LR
sub1[submodule] -.-> Main
sub2[submodule] -.-> Main
Main[Main module] --> M
M(Composed metaschema) -->|Explode| S(Supermodel)
S --> xmlmap[XML syntax map]
S --> xmldocs[XML docs]
S --> xmlinout[XML i/o converters]
S --> xsd[XSD]
S --> schematron[Schematron]
S --> jsonschema[JSON Schema]
S --> jsoninout[JSON i/o converters]
S --> jsondocs[Object Notation docs]
S --> jsonmap[JSON/YAML syntax map]

style sub1 fill:skyblue
style sub2 fill:yellow
style Main fill:yellow

style M fill:yellow,stroke:#333,stroke-width:3px, stroke-dasharray: 2,2;
style S fill:pink,stroke:#333,stroke-width:3px, stroke-dasharray: 2,2;