Markdown Cheatsheet

- 59 views

Headings


# Heading 1
 
## Heading 2
 
### Heading 3
 
#### Heading 4
 
##### Heading 5
 
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Emphasis


**bold**
_italics_
~~strikethrough~~

bold italics strikethrough

> Quoted Text

Quoted Text


A line with a [Link](akhilaariyachandra.com).
 
A line with a [Link with Title](akhilaariyachandra.com "Link Title").

A line with a Link.

A line with a Link with Title.

Images


![alt text](https://www.gatsbyjs.org/static/e4755730e3f0ff67b3ebd98342371e7d/a3df1/gradient.jpg "Image Title")

alt text

Code


Example of `inline code`.

Example of inline code.

Code Block with Syntax Highlighting

```javascript
const test = "JavaScript Example";
console.log(test);
```
 
```html
<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    HTML Example
  </body>
</html>
```
 
```
No Language specified example
```
const test = "JavaScript Example";
console.log(test);
<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    HTML Example
  </body>
</html>
No Language specified example

Tables


| Column Header 1 | Column Header 2 | Column Header 3 |
| --------------- | :-------------: | --------------: |
| Left Aligned    | Center Aligned  |   Right Aligned |
| No need         |    to format    |         columns |
| Column 1        |    Column 2     |        Column 3 |
Column Header 1Column Header 2Column Header 3
Left AlignedCenter AlignedRight Aligned
No needto formatcolumns
Column 1Column 2Column 3

Lists


Ordered List

1. First Item
2. Second Item
3. Third Item
 
OR
 
1. First Item
1. Second Item
1. Third Item
  1. First Item
  2. Second Item
  3. Third Item

Unordered List

- First Item
- Second Item
- Third Item
 
OR
 
- First Item
- Second Item
- Third Item
 
OR
 
- First Item
- Second Item
- Third Item