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

https://github.com/nabin-8/markdown-guide


https://github.com/nabin-8/markdown-guide

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

### Markdown Guide
## Table of Contents
|No| Content | link |No| Content | link |
|---| ---| ---|---| ---| ---|
|1.| Hedings| [click](#hedings) |7.| Quoting code| [click](#quoting-code)|
|2.| Styling text| [click](#styling-text)|8.| Link| [click](#link)|
|3.| List| [click](#list)|9.| Images| [click](#images)|
|4.| Table| [click](#table)|10.|Mermaid|[click](#mermaid)|
|5.| Highlight| [click](#highlight)|
|6.| Horizontal line| [click](#horizontal-line)|

---
### Hedings
`# A first-level heading`

`## A second-level heading`

`### A third-level heading`

>1. # A first-level heading
>1. ## A second-level heading
>1. ### A third-level heading
---
### Styling text
| style |Example| syntax |
|---| ---| ---|
|**Bold**|`**To Make Bold Use**`| `**`|
|*Italic*|`*To Make Italic Use*`| `*`|
|~~Strikethrough~~|`~~To make Strikethrough Use~~`| `~~` |
|**To make Nested Bold and *italic* Use**|`**To make Nested Bold and *italic* Use**` |`* **` |

---
### List
ordert list

`1. one`
`1. two`
`1. three`

1. one
1. two
1. three

unordert list

`- one`
`- two`
`- three`
- one
- two
- three

---
### Table
```
| syntex | description|
| ---| ---|
| title| description|
```
| syntex | description|
| ---| ---|
| title| description|

---
### Highlight


> To highlight you can use Blockquotes >

`#RRGGBB`

```
To highlight multiple things you can use
```


> To highlight you can use

`#RRGGBB`

```
To highlight multiple things you can use
```
---
### Horizontal line

You can use `---` 3 hyphen

---
### Quoting code

**JavaScript Program**


```javascript
console.log("hello");
//this is js code
```

```javascript
console.log("hello");
//this is js code
```
**C Program**


```c
#include
int main(){
printf("Hello World!);
return 0;
}
```

```c
#include
int main(){
printf("Hello World!);
return 0;
}
```

---
### Link

`[ref](link)`

`[Table of Content](#table-of-contents)`
`[YouTube](https://www.youtube.com/)`

[Table of Content](#table-of-contents)

[YouTube](https://www.youtube.com/)

---
### Images
`![ref](link of image)`
`![alt text](./new.jpg)`

---
![alt text](./img/gitbranch.png)

---

## Mermaid

With Mermaid You can make

- Graph
- Roadmaps
- Shapes
- Flow
- Gantt Chart

Let's Lern the basics

### Graph

Diagram
```mermaid
flowchart TD
A-->B
```
*Code*

```mermaid 

flowchart
A-->B
```

Possible directions are:

- TB - top bottom
- BT - bottom top
- RL - right left
- LR - left right
- TD - same as TB

|Diagram |*Code*|Diagram|*Code*|
|---|---|---|---|
|![diagram1](/img/diagram1.png)|TB |![diagram1](/img/diagram3.png)|RL |
|![diagram1](/img/diagram2.png)|BT |![diagram1](/img/diagram4.png)|LR |

### Roadmaps

Diagram
```mermaid
flowchart

A((md Guide))
A--->B((mermaid))
A--->C((Flow Chart))
A--->D((Gantt Chart))
A--->E((Graph))
```
*Code*


```mermaid
flowchart

A((md Guide))
A--->B((mermaid))
A--->C((Flow Chart))
A--->D((Gantt Chart))
A--->E((Graph))
```

### Shapes
```mermaid
flowchart
Rectangle
```
*Code*


```mermaid
flowchart
Rectangle
```

```mermaid
flowchart
A(Rectangle Round Edges)

```
*Code*


```mermaid
flowchart
A(Rectangle Round Edges)

```


```mermaid
flowchart
A((__Circle__))

```
*Code*


```mermaid
flowchart
A((Circle))

```


```mermaid
flowchart
A>Asymmetric]

```
*Code*


```mermaid
flowchart
A>Asymmetric]

```


```mermaid
flowchart
A{Rhombus}

```
*Code*


```mermaid
flowchart
A{Rhombus}

```

### Gantt Chart
```mermaid
gantt
title Gantt Diagram
dateFormat YYYY-MM-DD
section Section
First Task :a1, 2024-01-01, 30d
Another Task :after a1, 20d
section Another
Second Task :2024-01-12, 12d
Third Task : 24d
```
*code*


```mermaid
gantt
title A Gantt Diagram
dateFormat YYYY-MM-DD
section Section
First Task :a1, 2018-07-01, 30d
Another Task :after a1, 20d
section Another
Second Task :2018-07-12, 12d
Third Task : 24d
```