Hello Folks,
This Markdown cheat sheet will help you in understanding of basic syntax in Markdown tags.
1.Heading
Syntax for Heading 1 to Heading 6
1. # h1
2 .## h2
3. ### h3
4. #### h4
5. ##### h5
6. ###### h6
H1
H2
H3
H4
H5
H6
2.Bold
We can an make a text bold by using this syntax
** **
.
syntax: **bold**
where bold is a text for which bold property will be applied.
Output: BOLD
3.Italic
We can an make a text Italic by using this syntax
* *
.
syntax: *italic*
where italic is a text for which italic property will be applied.
Output: ITALIC
4.Strike
We can an make a text strike by using this syntax
~~ ~~
.
syntax: ~~strike~~
where strike is a text for which strike property will be applied.
5.Hyperlink
We can an make a text hyperlink by using this syntax
[]()
.
syntax: [Text](Link of url)
Example: [Google](https://google.com)
Output: Google
6.Image
We can add an image by using this syntax
! []()
.
syntax: ! [Text](Link of url)
Example: ! [Image](https://images.pexels.com/photos/879109/pexels-photo-879109.jpeg?auto=compress&cs=tinysrgb&w=600)
Output:
7.Code
We can add an code by using this syntax `
code
syntax:
/// ```///
color: #ffffff;
background-color: #1d1d1d
/// ``` ///
output:
<div>
color: #ffffff;
background-color: #1d1d1d
</div>
8.Blockquote
We can an make a paragraph blockquote by using this syntax
>
.
syntax: > Paragraph
Output:
Hello
9.Unorderd List
syntax:
- Item1
- Item2
- Item3
- Item1
- Item2
- Item3
10.Orderd List
syntax:
1. Item1
2. Item2
3. Item3
- Item1
- Item2
- Item3
11.Tables
To add a table, use three or more hyphens (---) to create each column’s header, and use pipes (|) to separate each column. For compatibility, you should also add a pipe on either end of the row.
Syntax:
| Syntax | Description |
| --- | ----------- |
| Header | Title |
| Paragraph | Text |
Syntax | Description |
Header | Title |
Paragraph | Text |