Markdown Cheatsheet
- 0 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
Links
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

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 1 | Column Header 2 | Column Header 3 |
---|---|---|
Left Aligned | Center Aligned | Right Aligned |
No need | to format | columns |
Column 1 | Column 2 | Column 3 |
Lists
Ordered List
1. First Item
2. Second Item
3. Third Item
OR
1. First Item
1. Second Item
1. Third Item
- First Item
- Second Item
- Third Item
Unordered List
- First Item
- Second Item
- Third Item
OR
- First Item
- Second Item
- Third Item
OR
- First Item
- Second Item
- Third Item
- First Item
- Second Item
- Third Item
0