Arthur Lamidel

Results 3 comments of Arthur Lamidel

It is used solely (to my knowledge) by Mermaid (the Markdown extension). Within that, it is used solely for Entity Relationship Diagrams (used, for example, to represent relational databases). I...

Additionally, here is the official syntax specification: https://mermaid-js.github.io/mermaid/#/entityRelationshipDiagram?id=relationship-syntax

A straightforward configuration should have `sqls` somewhat working. Here's my `languages.toml`: ```toml [[language]] name = "sql" autoformat = false language-servers = ["sqls"] # ... [language-server.sqls] command = "sqls" ``` You...