Style Examples¶
Examples of markdown styles.
- more information can be found here.
Section 1: Naming sections¶
This is the first section in the first chapter
Here is some Python source code:
| 1 2 3 4 5 6 7 8 9 10 |  | 
Section 2: Second Section¶
This is the second section in the first chapter
Subsection example¶
This is it.
Citing & Linking¶
This is an example citation [1].
This is a link.
MermaidJS Diagrams¶
Warning Sometimes these seem not to render properly at the moment. Hopefully someone can fix this soon.
Simple Cycle
graph LR
    hello --> world
    world --> again
    again --> hello
Split Tree
graph TD
    A[Client] --> B[Load Balancer]
    B --> C[Server01]
    B --> D[Server02]