MarkDown Made Easy
So Mark 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 opps! Markdown ?
When there is a language like HTML for writing webpages why MarkDown ?,
- 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.
- 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 hmm.. MarkDown , I think by now you know MarkDown(GitHub flavour) gives emojis
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
- Item 1
- Item 2
1. Sub item 1
2. Sub item 2 - Item 3
1.Item 1
2.Item 2
1.Sub item 1
2.Sub item 2
3.Item 3
5. hyper link
[Drax Home](https://naveenrajm7.github.io)
Drax Home
6. Image
![Mark down](https://www.fullstackpython.com/img/logos/markdown.png)
7. Back quote
>This is back quote
This is back quote
8. Inline code
`#include
9. language code
`python
def fun():
pass
\
`
def fun():
pass
Github flavored markdown
Table
| Column 1 | Column 2 |
| ——– | ——– |
| Row 1. | Row 2. |
Emoji
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