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
I tried 2 different options:
Option1: Using it with the code fence
Inside the gitbook I wrote the content:
graph TD; A-->B;
And once the bitbook was built all I got was a code fence inside the gitbook instead of the diagram:
Option2: Using it with a block
{% mermaid %} graph TD; A-->B; {% endmermaid %}
gitbook build gives error
The text was updated successfully, but these errors were encountered:
This works.
```graph graph TD; A-->B; A-->C; B-->D; C-->D; ```
Sorry, something went wrong.
No branches or pull requests
I tried 2 different options:
Option1: Using it with the code fence
Inside the gitbook I wrote the content:
And once the bitbook was built all I got was a code fence inside the gitbook instead of the diagram:
Option2: Using it with a block
Inside the gitbook I wrote the content:
{% mermaid %}
graph TD;
A-->B;
{% endmermaid %}
gitbook build gives error
The text was updated successfully, but these errors were encountered: