Mermaid terminology¶
Learning outcomes
- Learners understand what Mermaid is
- Learners have practiced with the Mermaid editor
For teachers
Lesson plan:
- Prior knowledge:
- What is a markup language?
- Can you give examples of markup languages?
- Why use markup languages?
- What is a graph in this context?
- What are properties of a graph?
- What is a graph root?
- What is a graph concept?
- What is a graph node?
- What is a graph vertex?
- What is a graph relation?
- What is a graph edge?
- Present:
- What is a markup language?
- Why use a markup language?
- Challenge: exercise
- Feedback: ask 1 random learner to show mindmap
Mermaid is a markup language to create graphs.
A markup language is a language that describes the markup of something. Typically, this involves you writing down the structure of how things should look like, where software will take care of the details. A markup language allow you to store knowledge in plain text that is friendly to both humans and computers.
In case of a mindmap, the Mermaid markup language uses indentation to indicate the structure of the mindmap.
The https://mermaid.live website is an online editor with direct visualization.
Mermaid will do the layout for you. Options to decide upon the layout are absent or limited. This is a strength: you should let Mermaid do the layout for you, as the goal is to create graphs quickly, not to create graphs for publication.
flowchart TD
concept_1[This is a vertex/node/concept]
concept_2[Another one]
concept_3[Another one]
concept_1 <--> |this is an edge/relation| concept_2
concept_1 --> concept_3 --> concept_2
Graph terminology: The 'circles with text' can be called a vertex/node/concept. The 'lines between things' can be called an edge/relation.
A mindmap is a graph that does not have relations between its nodes/vertices/concepts. For complex information, however, one would enjoy to express this by adding edges/relations. A Mermaid flowchart allows one to create graphs of a complex structure.
Exercise: a flowchart¶
Need a video?
Here is a video of someone doing this exercise: https://youtu.be/I9UI7DUM81k
flowchart TD
Sweden
Snow
Cold
Skiing
Vikings
Boats
Swords
Nature
Forests
More_forests[More forests]
Sweden --> Nature
Sweden --> Snow --> Cold
Nature <--> Snow
Snow --> Skiing
Sweden --> Vikings
Vikings --> Boats
Vikings --> Swords
Nature --> Forests
Nature --> More_forests
Forests --> |Needed to build| Boats
An example Mermaid flowchart, with associations to 'Sweden'.
In this exercise, we'll be making a flowchart of your associations with a topic of your choice, for example, your research topic.
- Go to https://mermaid.live
- Click on 'Sample Diagrams' then click 'Flow'
- Modify the flowchart so that it shows your associations on the topic you've chosen (e.g. your research topic). On at least 1 edge, describe the relationships between the concepts. When you feel you are done, you are done.
- Visit the Mermaid documentation on flowcharts and add one feature
Questions:
- What can you express in a Mermaid flowchart?
Answer
A Mermaid flowchart allows one to create a complex structure of vertices/nodes/concepts in any way
- What can you not express in a Mermaid flowchart?
Answer
One cannot determine where the nodes will end up.