We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This can be seen as a continuation of #46
Syntax errors are currently not reported with any level of detail by extension v1.13.2, e.g.:
```mermaid sequenceDiagram A - > B: test B --> A: error ```
Produces this output in the preview pane:
By contrast, the Mermaid online editor will helpfully point to the location of the problem:
The text was updated successfully, but these errors were encountered:
Haven't looked at the extension code but the Mermaid docs now show a mechanism for registering a syntax error callback - from https://mermaid-js.github.io/mermaid/#/usage?id=advanced-usage:
mermaid.parseError = function(err,hash){ displayErrorInGui(err); };
Sorry, something went wrong.
No branches or pull requests
This can be seen as a continuation of #46
Syntax errors are currently not reported with any level of detail by extension v1.13.2, e.g.:
Produces this output in the preview pane:
By contrast, the Mermaid online editor will helpfully point to the location of the problem:
The text was updated successfully, but these errors were encountered: