Syntax: # Heading 1
Syntax: ## Heading 2
Syntax: ### Heading 3
Syntax: #### Heading 4
Syntax: ##### Heading 5
Syntax: ###### Heading 6
Syntax: **** or ______ or -----
Syntax: **This is a bold text**
Syntax: *This is a italic text*
Syntax: ~~This is a striked text~~
Syntax: ***This is bold and italic text***
This is a bold text
This is a italic text
This is a striked text
This is bold and italic text
| Header 1 | Header 2 |
| ---------| ---------|
| Text1 | Text 4 |
| Text2 | Text 3 |
Header 1 | Header 2 |
---|---|
Text1 | Text 4 |
Text2 | Text 3 |
| This text is alinged to left | This text is alinged to center | This text is alinged to right |
| :--- | :----: | ---:|
| Text1 | Text 4 | Text 5 |
| Text2 | Text 3 | Text 6 |
This text is alinged to left | This text is alinged to center | This text is alinged to right |
---|---|---|
Text1 | Text 4 | Text 5 |
Text2 | Text 3 | Text 6 |
Syntax: - Luv
- Ajay
- Luv
- Ajay
Syntax: 1. Option 1
2. Option 2
- Option 1
- Option 2
Syntax 1: - Food
1. Rice
2. Chapati
Syntax 2: - Food
- Rice
- Chapati
Syntax 3: 1. Food
1. Rice
2. Chapati
Syntax 4: - Food
1. Rice
2. Chapati
- Food
- Rice
- Chapati
- Food
- Rice
- Chapati
- Food
- Rice
- Chapati
- Food
- Rice
- Chapati
> This is a single block quote.
>> This is anested block quote.
this is a single block quote.
nested block quote.
Synatax: ```System.out.print("Hello");```
System.out.print("Hello");
synatx: [Text](link)
[Linkedin](https://www.linkedin.com/in/luv-sahu-182356200/)
Adding title(Hover title) to link
[Linkedin](https://www.linkedin.com/in/luv-sahu-182356200/ "Linkedin account")
Normal link: Linkedin
Adding title: Linkedin
< Urls >
Example: <https://instagram.com/luv_k_sahu>
< emails >
Example: <[email protected]>
Example of link: https://instagram.com/luv_k_sahu
Example of email: [email protected]
syntax: ![](Image URL)
Example: ![](https://picsum.photos/200/300)
Example:
Syntax :
```json
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
Many Markdown applications allow you to use HTML tags in Markdown-formatted text. This is helpful if you prefer certain HTML tags to Markdown syntax. For example, some people find it easier to use HTML tags for images. Using HTML is also helpful when you need to change the attributes of an element, like specifying the color of text or changing the width of an image.
To use HTML, place the tags in the text of your Markdown-formatted file.
This **word**
is bold. This <em>word</em>
is italic.
The rendered output looks like this:
This word is bold. This word is italic.
For security reasons, not all Markdown applications support HTML in Markdown documents. You can freely use those tags in Github though.
Use blank lines to separate block-level HTML elements like
<div>
,<table>
,<pre>
, and<p>
from the surrounding content. Try not to indent the tags with tabs or spaces — that can interfere with the formatting.
You can’t use Markdown syntax inside block-level HTML tags. For example, <p>italic and **bold**</p>
won’t work.