I have a .md file saved and I am viewing it using Atom and the Mermaid Preview package. I am going off the example on their GitHub page:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
That renders fine, but how do I add spaces the text? For example:
graph TD;
A F-->B;
A-->C;
B-->D;
C-->D;
The previewer goes blank when I put spaces in. I tried adding quotations, but that did not help.