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
GitHub now supports Mermaid diagrams in Markdown text. See Mermaid syntax specifications.
Some benefits:
sphinxcontrib-mermaid
An example:
```mermaid graph LR A["𝐽/𝜓"] --> N0[ ] N0 --> N1["𝑓₀(980)"] N0 --> 0["𝛾"] N1 --> 1["𝜋⁰"] N1 --> 2["𝜋⁰"] style A fill:#FFFFFF, stroke:#FFFFFF; style N0 fill:#FFFFFF, stroke:#FFFFFF; style N1 fill:#FFFFFF, stroke:#FFFFFF; style 0 fill:#FFFFFF, stroke:#FFFFFF; style 1 fill:#FFFFFF, stroke:#FFFFFF; style 2 fill:#FFFFFF, stroke:#FFFFFF; ```
graph LR A["𝐽/𝜓"] --> N0[ ] N0 --> N1["𝑓₀(980)"] N0 --> 0["𝛾"] N1 --> 1["𝜋⁰"] N1 --> 2["𝜋⁰"] style A fill:#FFFFFF, stroke:#FFFFFF; style N0 fill:#FFFFFF, stroke:#FFFFFF; style N1 fill:#FFFFFF, stroke:#FFFFFF; style 0 fill:#FFFFFF, stroke:#FFFFFF; style 1 fill:#FFFFFF, stroke:#FFFFFF; style 2 fill:#FFFFFF, stroke:#FFFFFF;
The text was updated successfully, but these errors were encountered:
Interesting 👀
Sorry, something went wrong.
After suggestions by @grayson-helmholz @Smaldanerep1, this may look better:
```mermaid graph LR N0["𝐽/𝜓"] --> N1["𝑓₀(980)"] N0["𝐽/𝜓"] --> 0["𝛾"] N1 --> 1["𝜋⁰"] N1 --> 2["𝜋⁰"] style N0 fill:#FFFFFF, stroke:#FFFFFF; style N1 fill:#FFFFFF, stroke:#FFFFFF; style 0 fill:#FFFFFF, stroke:#FFFFFF; style 1 fill:#FFFFFF, stroke:#FFFFFF; style 2 fill:#FFFFFF, stroke:#FFFFFF; ```
graph LR N0["𝐽/𝜓"] --> N1["𝑓₀(980)"] N0["𝐽/𝜓"] --> 0["𝛾"] N1 --> 1["𝜋⁰"] N1 --> 2["𝜋⁰"] style N0 fill:#FFFFFF, stroke:#FFFFFF; style N1 fill:#FFFFFF, stroke:#FFFFFF; style 0 fill:#FFFFFF, stroke:#FFFFFF; style 1 fill:#FFFFFF, stroke:#FFFFFF; style 2 fill:#FFFFFF, stroke:#FFFFFF;
No branches or pull requests
GitHub now supports Mermaid diagrams in Markdown text. See Mermaid syntax specifications.
Some benefits:
sphinxcontrib-mermaid
.An example:
The text was updated successfully, but these errors were encountered: