Supported Markdown

Supported Markdown:

Image

Hi guys.
This is my first post and is just a test for different
markdown syntax that is supported in my blog.

Heading 1

Syntax: # Heading 1

Heading 2

Syntax: ## Heading 2

Heading 3

Syntax: ### Heading 3

Heading 4

Syntax: #### Heading 4

Heading 5

Syntax: ##### Heading 5

Heading 6

Syntax: ###### Heading 6



This will be bold -> Vighnesh.

Syntax: **Vighnesh**


This will be italic -> Vighnesh

Syntax: *Vighnesh*


This will be strikethrough -> Vighnesh.

Syntax: ~~Vighnesh~~


This will be bold and italic -> Vighnesh.

Syntax: ***Vighnesh***


This is a block quote

Syntax: > This is a block quote



Ordered Lists

  1. Item 1
  2. Item 2
  3. Item 3
Syntax
1. Item 1
1. Item 2
1. Item 3

Unordered List

  • Item 1
  • Item 2
  • Item 3
- Item 1  
- Item 2  
- Item 3  

3 Backticks for code block

const a = 1;const b = 2;  
function add(x, y) {  
 return x + y;}  
  
console.log(add(a, b));  
  ```js  
const a = 1;const b = 2;  
function add(x, y) {  
  return x + y;
}  

console.log(add(a, b));  
\```


Single backtick for inline code.

`backtick`


Adding a Link.

[Link Name](https://some-link.com)  


Adding title to a Link.

[Link Name](https://some-link.com "Some Title")  


Adding an image.

![Alt Text](https://image.com)  


Tables

Syntax Description
Header Title
Paragraph Text
| Syntax    | Description |  
| --------- | ----------- |  
| Header    | Title       |  
| Paragraph | Text        |  

Table Alignment

Syntax Description Test Text
Header Title Here’s this
Paragraph Text And more
| Syntax    | Description |   Test Text |  
| :-------- | :---------: | ----------: |  
| Header    |    Title    | Here's this |  
| Paragraph |    Text     |    And more |  


Task list

  • Task 1
  • Task 2
  • Task 3
- [x] Task 1  
- [ ] Task 2  
- [ ] Task 3  

Math support

(a+b)2=a2+2ab+b2 (a + b)^2 = a^2 + 2ab + b^2

Syntax:

  • Inline
$ (a + b)^2 = a^2 + 2ab + b^2  $  
  • Block
$$ (a + b)^2 = a^2 + 2ab + b^2  $$

Comments