51
How to Write Markdown ?
A scripting language that is very lightweight. Markdown is rapidly used in content writing in some blog post website like this one.
What is Readme.md file ? ( ___.md )
It is a simple plain text file that contain basic information of the files and guides. It's usually used to write basic documentation, most popularly repositories by repository providers like GitHub, GitLab and bitbucket.
To write normal text : simply write on .md file.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Italics :
_Italics_
=>
Italics
Bold or Strong Text :
**Bold/Strong**
=> Bold/Strong
Bold and Italics :
***Bold and Italics***
=> Bold and Italics
Scratch any tet :
~~1000~~
=> 1000
Links :
[include title to show on file](include the link here)
=>
[Visit My Portfolio](https://gaurav24072002.github.io/)
=>
Visit My Portfolio
Images :

=>

=>
To make any text look like code :
` This is the code format of markdown file `
=>
This is the code format of markdown file
very name = "Gaurav";
console.log(name);
___
=>| Tables | Goas | Here |
| --- | --- | --- |
| One | Two | Three |
| Four | Five | Six |
* Fruit
- Second Level
+ Third Level
=>
- Second Level
- Third Level
Ordered List =>
1. List One
2. List Two
3. List Three
Unordered List =>
- List Four
- List Five
Ordered List =>
Unordered List =>
In case you actually want to use certain literals like
*
and #
without having them formatted, simply prefix a backslash \
before the character or wrap it inside a pair of backticks (similar to inline code).\# Without the backslash, this would be a level 1 heading!
Now that you know how to use Markdown, it's your turn to play around with the syntax, build cool projects with it, and have fun along the way!
51