Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hritik5102/markdown-language-tutorial

Just a basic syntax of markdown language i.e .md you can run the code directly into any editor like VS code
https://github.com/hritik5102/markdown-language-tutorial

markdown markdown-basic markdown-editor markdown-language markdown-syntax markdown-tutorial markdown-viewer readme-md

Last synced: 16 days ago
JSON representation

Just a basic syntax of markdown language i.e .md you can run the code directly into any editor like VS code

Awesome Lists containing this project

README

        

# Markdown language basic

# Table of Contents
- [Table of Contents](#table-of-contents)
- [Heading](#heading)
- [Emphasis](#Emphasis)
- [Horizontal-rule](#horizontal-rule)
- [Blockquote](#blockquote)
- [Link](#link)
- [Unorder-list](#unorder-list)
- [Order-list](#order-list)
- [Image](#image)
- [GIF](#GIF)
- [Code](#Code)
- [Tables](#tables)
- [Task-list](#task-list)

## Heading

```
# Apple 1
## Apple 2
### Apple 3
#### Apple 4
###### Apple 5
```

[(Back to Top)](#table-of-contents)

## Emphasis

```
*italic*
_italic_

**bold**
__bold__

***bold italic***
___bold italic___

~~strikethrough~~
```

[(Back to Top)](#table-of-contents)

## Horizontal-rule

```
----
****
```

[(Back to Top)](#table-of-contents)

## Blockquote

> This is
> a blockquote
>
> > Nested
> > Blockquote

```
> This is
> a blockquote
>
> > Nested
> > Blockquote
```
[(Back to Top)](#table-of-contents)

## Code

```js
// Ordering operators
var a = 10;
var b = 2;
console.log("a less than 10? ", a < 10);
console.log("a equal to 10", a === 10);
console.log("a greater than 10? ", a > 10);
```

Syntax :

[(Back to Top)](#table-of-contents)

## Link

[Hritik Jaiswal](https://linktr.ee/hritikdj "hritik")

```
[Hritik Jaiswal](https://linktr.ee/hritikdj "hritik")

```
[(Back to Top)](#table-of-contents)

## Unorder-list

* item 1
* item 2
* item 3
* nested item 1
* nested item 2

```
* item 1
* item 2
* item 3
* nested item 1
* nested item 2
```
[(Back to Top)](#table-of-contents)

## Order-list

1. item 1
2. item 2
3. item 3
4. item 4

```
1. item 1
2. item 2
3. item 3
4. item 4
```
[(Back to Top)](#table-of-contents)

## Image

![markdown logo](pexels9.jpeg "books")

```
![markdown logo](pexels9.jpeg "books")
```
[(Back to Top)](#table-of-contents)

## GIF

![](giphy.gif "Iron Man")

```
![](giphy.gif "Iron Man")
```
[(Back to Top)](#table-of-contents)

## Tables

| Name | Email |
|---------| ---------- |
| John | [email protected]|
| Sophia | [email protected]|

```
| Name | Email |
|---------| ---------- |
| John | [email protected]|
| Sophia | [email protected]|
```
[(Back to Top)](#table-of-contents)

## Task-list

* [x] task 1
* [ ] task 2

```
* [x] task 1
* [ ] task 2
```

```bash
_____ _ _ __ __
|_ _| | | | \ \ / /
| | | |__ __ _ _ __ | | __ \ V /___ _ _
| | | '_ \ / _` | '_ \| |/ / \ // _ \| | | |
| | | | | | (_| | | | | < | | (_) | |_| |
\_/ |_| |_|\__,_|_| |_|_|\_\ \_/\___/ \__,_|
```

[(Back to Top)](#table-of-contents)