Hi,
I need to generate dinamically web pages from my application, in order to show diagrams.
My application is able to generate markdown code and, until now, I obtain the web page and the diagram using mermaid library.
For example: my web page contain the following source:
<html>
<head>
<title>Schemi funzionali - Flow chart </title>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<meta charset="UTF-8">
</head>
<body>
<div class='mermaid'>
graph TD
A -->B
</div>
</body>
</html>
The question is: it'is possible to obtain the same thing using Lucidchart lybraries, without the need to connect to the site https://www.lucidchart.com and make the diagram from scratch?
Thanks in advance and best regards