graph drawMermaid functionality #6060
Unanswered
justinlevi
asked this question in
Q&A
Replies: 2 comments 4 replies
-
![]() |
Beta Was this translation helpful? Give feedback.
4 replies
-
is this something that should get PR-ed at least? like did it get fixed? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Checked other resources
Commit to Help
Example Code
"%%{init: {'flowchart': {'curve': 'linear'}}}%%\ngraph TD;\n\tLangGraphInput[LangGraphInput]:::startclass;\n\tLangGraph([LangGraph]):::otherclass;\n\tLangGraphOutput[LangGraphOutput]:::endclass;\n\tLangGraphInput --> LangGraph;\n\tLangGraph --> LangGraphOutput;\n\tclassDef startclass fill:#ffdfba;\n\tclassDef endclass fill:#baffc9;\n\tclassDef otherclass fill:#fad7de;\n"
"""
graph TD;
LangGraphInput[LangGraphInput]:::startclass;
LangGraph([LangGraph]):::otherclass;
LangGraphOutput[LangGraphOutput]:::endclass;
LangGraphInput --> LangGraph;
LangGraph --> LangGraphOutput;
classDef startclass fill:#ffdfba;
classDef endclass fill:#baffc9;
classDef otherclass fill:#fad7de;
"""
Beta Was this translation helpful? Give feedback.
All reactions