MarkDown Made Easy

2 minute read

So Mark:arrow_down: sorry MarkDown is a light weight Markup language used to write README files, blogs, and pretty much everything when it comes on online content writing

Why Mark:arrow_down: opps! :expressionless: Markdown ?

When there is a language like HTML for writing webpages why MarkDown ?,

  1. Imagine that I you want to write a blog on your website then for just adding link you should use ‘some_text’, for making bold text’text’ uff.. that’s lot of tags , if fact more tags that your content.
  2. Internet is not just used by programmers, so everyone writes in it and you can’t expect everyone to know MarkUp languages like html

&, this brings us to the very advantage of MarkDown Readability also providing all markup features.Hence instead of spending weeks-months to learning HTML. just spend 20-30 minutes to pick up MarkDown and start writing.
here is a beginner’s guide to Markdown, every section consist of two lines first one showing MarkDown code & second one its output . So let’s :heavy_check_mark::arrow_down: hmm.. MarkDown , I think by now you know MarkDown(GitHub flavour) gives emojis :stuck_out_tongue_winking_eye:


1. Headings


# Heading 1

Heading 1

## Heading 2

Heading 2

### Heading 3

Heading 3

#### Heading 4

Heading 4

##### Heading 5

Heading 5

###### Heading 6

Heading 6


2. horizontal ruler

---

___
___

3. Text emphasis

It’s *italic*
It’s italic
It’s **bold**
It’s bold
It’s ~~strike through~~
It’s strike through

4. List

Unordered List

* Item 1
* Item 2
    * Sub item 1
* Item 3

  • Item 1
  • Item 2
    • Sub item 1
  • Item 3
Ordered list
  1. Item 1
  2. Item 2
        1. Sub item 1
        2. Sub item 2
  3. Item 3

    1.Item 1
    2.Item 2
       1.Sub item 1
       2.Sub item 2
    3.Item 3

[Drax Home](https://naveenrajm7.github.io)
Drax Home

6. Image

![Mark down](https://www.fullstackpython.com/img/logos/markdown.png)
Mark down

7. Back quote

>This is back quote

This is back quote


8. Inline code

`#include\` `#include`

9. language code

`python def fun(): pass \`

def fun():
    pass


Github flavored markdown

Table

| Column 1 | Column 2 |
| ——– | ——– |
| Row 1. | Row 2. |

Emoji

:+1:

to-do list

  • didn’t do
  • did job

paragraph

First line of paragraph ended Second line of paragraph started and continuing further on till it reaches the end of line in Any device of any width, oh sorry any device enough that takes care of all tour of screens

Leave a Comment