[markdown] Example

image

GFM Markdown

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
code block
1
console.log("fenced code block");
**HTML block**
  • list
    • list indented
  1. ordered
  2. list
    1. ordered list
    2. indented
  • task
  • list completed

link

block quote


horizontal line


code, italic, bold, strikethrough, Red color

Table Cell Merge

| @cols=2:merged |
| — | — |
| table | table |

Charts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
,Budget,Income,Expenses,Debt
June,5000,8000,4000,6000
July,3000,1000,4000,3000
Aug,5000,7000,6000,3000
Sep,7000,2000,3000,1000
Oct,6000,5000,4000,2000
Nov,4000,3000,5000,4000

type: column
title: Monthly Revenue
width: 465
x.title: Amount
y.title: Month
y.suffix: $
legend.visible: false

UML

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class BaseClass

namespace net.dummy #DDDDDD {
.BaseClass <|-- Person
Meeting o-- Person

.BaseClass <|- Meeting
}

namespace net.foo {
net.dummy.Person <|- Person
.BaseClass <|-- Person

net.dummy.Meeting o-- Person
}

BaseClass <|-- net.unused.Person
Share