<h1> = #
<h2> = ##
<h3> = ###
<h4> = ####
<h5> = #####
<h6> = ######
In order to move to next line leave 2 additional space after the end of line
like this
Bold using two **
before and after a specific word
Bold using two __
before and after a specific word
Italicise using single *
before and after a specific word
Italicise using single _
before and after a specific word
Lets say you have written something like this and in the process a new feature has been added and you need other users to notice it without even comparing with previous version then visually we can represent it using these (~~)
~~symbols~~ **Mark Down Syntax**
- Ordered
- Unordered
To add ordered and unordered list use1.
and*
Lets say you have to add
Table of Contents
- Title
- Introduction
- Architecture
- Micro Services
- Serverless Computing
- Conclusion
To write beautiful contents table like this follow the syntax
1. Title
2. Introduction
3. Architecture
1. Micro Services
2. Serverless computing
4. Conclusion
Links are useful when you need to write blogs or when you need to redirect users to other topics
[title here](link here)
Let's assume you need to add social media links to make it more visual
[![Title](link of the image)](redirecting link to your profile)
For image use
![Title of the image](link to the image "to label the image use double quotes immediately after the link")
Example
one | two | three |
---|---|---|
row1 | value2 | value3 |
well you can use this for pretty much anything
- Display table
- Display images
- Todo list and status
- Project status
It`s left to your immagination
|one |two |three |
|--- |--- |--- |
|row1 |value2 |value3 |
using ___
three underscore
using ***
three stars
[x] done
[ ] in list
[x] to indicate its done
[ ] to indicate still pending
use single back ticks to make it look like its a variable `name of the variable`
So all this time you might be wondering how to include code blocks, we can do it two ways:
- > this is single line
- ``` for multiple lines
in oreder to put script related to installation procigure or command line like the line below use
> npm install
> or use to specify quotes
\```language
specify language for syntax highliting
for python just use ```python \''' incluse these at the end to close the section
You can even include emojis like these in the markdown :hugs: :grinning: :smiley:
Emojis can be used by surrounding a valid emoji name with colons( : ) like this :emoji-name:
For example, :smiley:
Follow the link below to know more