A Simple Guide to Markdown

A Simple Guide to Markdown

ยท

2 min read

๐Ÿ”ฏ Writing a Heading

Simply put they are just like the HTML's **h1 to h6**tags.

Let's see how โžŸ

# Heading
## Heading
### Heading
#### Heading
##### Heading
###### Heading

will give us โžŸ

Heading

Heading

Heading

Heading

Heading
Heading

A simple # + Space before any text makes it a Heading,
Single # act as a h1 tag, double ## act as h2 tag as the hash before the text increases the heading tag so as the h tag changes with each added #.

# for h1

## for h2

### for h3

#### for h4

##### for h5

###### for h6

๐Ÿ”ฏ Creating a Line Code

The Syntax goes like โžŸ

`Inline code goes here`

This in real sense gives us โžŸ Inline code goes here

๐Ÿ”ฏ Creating a Code Block

For a Code Block Syntax is Simply to put your code under ``` , and close it from both sides.

here it is โžŸ

``` Your Code Here ```

will give you :

Your Code Here

๐Ÿ”ฏ Strikethrough Text

The Syntax goes like โžŸ

Cross This Text

will give you โžŸ

81

๐Ÿ”ฏ Blockquote Text

Simple > before any Quote will give you a blockquote.

> You Quote here.

will give you โžŸ

Your Quote here.

๐Ÿ”ฏ Bold

Very simple Syntax put any text between **__________**

** Bold Text**

will give you โžŸ

** Bold Text**

๐Ÿ”ฏ Italic

Simple syntax for Italic have been using in this article all around โžŸ

*Makes Text Italic*

will give you โžŸ

Makes Text Italic

๐Ÿ”ฏ Italic and Bold

The Syntax for making any text Italic as well as Bold โžŸ

***Makes Text Italic as well as Bold***

brings You :

Makes Text Italic as well as Bold

๐Ÿ”ฏ Link

Linking to an external resource can be easily done by the syntax shown below โžŸ

[LINK_TEXT](LINK_URL)

An Example for that is :

Your Website : [Facebook](https://facebook.com)

will bring you :

Your Website : Facebook

๐Ÿ”ฏ Image

Linking any Image is also as very common practice & can be easily done by the syntax shown below, it can be an external link as well as from your local source โžŸ

![Eat Sleep Code Repeat](https://images.unsplash.com/photo-1564865878688-9a244444042a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80)

This Image is taken from an external resource, take a look โžŸ

Eat Sleep Code Repeat

ย