Open
Description
We're currently using pylint
to create PNG images for the codebase UML diagrams. What are everyone's thoughts on using Mermaid to create these diagrams instead?
requirementDiagram
requirement test_req {
id: 1
text: the test text.
risk: high
verifymethod: test
}
element test_entity {
type: simulation
}
test_entity - satisfies -> test_req
pymermaider
is written in rust and can auto-generate UML diagrams from python code. The only downside is that I'm not sure how to embed external text into a markdown file.
Activity