Table of contents
No headings in the article.
Markdown is written using markup language.
I am keeping it super simple to understand without taking much of your time. Take a look at this table which will help you to understand the markdown syntax elements .
Element | Markdown Syntax | Preview |
Heading | # Heading ## heading2 ### heading3 | # Heading |
Bold | ** Text ** | Text |
Italic | * Text * | Text |
Strikethrough | ~~ Text ~~ | |
Blockquote | >This is quote | |
OrderedList | 1. item1 2. item2 3. item3 | 1. item1 2. item2 3. item3 |
UnOrderedList | - item1 - item2 - item3 | |
code | ` you can write code ` | print("Hello World!") |
Link | [Name](link) | Name |
Image | ![Name](srcpath) | |
Definition | Def Head :definiton | |
Table | | heading1 | heading2 | |-----------|-----------| | apple | 5 | | oranges | 6 | | The one which you are seeing is a preview of table |