English | 繁體中文
A sample for markdown writing.
This originally is for my frient to learn how to write markdown. But unfortunately he is gone.
# Title
## 2nd Title
### 3rd Title
* List
* item1
* item2
- List
- item1
- item2
[My Website](https://jingshing.com/)

> description
description
‵‵‵c
#include<stdio.h>
// codes
‵‵‵
#include<stdio.h>
// codes- [ ] task
- [X] complete task
- task
- complete task
‵‵‵diff
+ increase
- decrease
‵‵‵
+ increase
- decreaseExample will display below, you can find detailed syntax online
‵‵‵mermaid
graph LR
A[Write Code] --> B{Does it work?}
B -- Yes --> C[Great!]
B -- No --> D[Google]
D --> A
‵‵‵
graph LR
A[Write Code] --> B{Does it work?}
B -- Yes --> C[Great!]
B -- No --> D[Google]
D --> A
