Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jingshing/markdown_sample

A sample for markdown writing.
https://github.com/jingshing/markdown_sample

markdown sample sample-code

Last synced: about 1 month ago
JSON representation

A sample for markdown writing.

Awesome Lists containing this project

README

        

English | [繁體中文](README_TCH.md)
# Markdown_sample
A sample for markdown writing.

This originally is for my frient to learn how to write markdown. But unfortunately he is gone.

## Titles
```
# Title
## 2nd Title
### 3rd Title
```
# Title
## 2nd Title
### 3rd Title

## list
```
* List
* item1
* item2
```
* List
* item1
* item2
## Links
```
[My Website](https://jingshing.com/)
```
[My Website](https://jingshing.com/)
## Image
```
![image](image/w.png)
```
![image](image/w.png)

## Description
```
> description
```
> description

## code box
```
‵‵‵c
#include
// codes

‵‵‵
```

```c
#include
// codes

```

## tasks
```
- [ ] task
- [X] complete task
```
- [ ] task
- [X] complete task

## Diff
```
‵‵‵diff
+ increase
- decrease
‵‵‵
```
```diff
+ increase
- decrease
```

## Mermaid graph
> Example 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
‵‵‵
```

```mermaid
graph LR
A[Write Code] --> B{Does it work?}
B -- Yes --> C[Great!]
B -- No --> D[Google]
D --> A
```