Congratulations for completing this resource! Mark it as completed to track your progress.
Markdown is a that allows you to easily format text. It’s popular for writing documentation and is supported by many platforms like , , and more.
In other words, Markdown is a quick & easy way to format plain text using special characters like asterisks, dashes, underscores, etc. Markdown enables you to create headers, lists, code blocks, and much more things.
Markdown is widely used in:
Here’s the cheatsheet of Markdown:
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
Heading level 1
==========
Heading level 2
----------
Alternatively, the syntax for & is the line below the text, add any number of characters for heading level 1 or characters for heading level 2.
**Bold Text**
Bold Text
__Bold Text__
Bold Text
*Italic Text*
Italic Text
_Italic Text_
Italic Text
**_Bold and Italic Text_**
Bold and Italic Text
***Bold and Italic Text***
Bold and Italic Text
___Bold and Italic Text___
Bold and Italic Text
> This is a blockquote.
This is a blockquote.
~~Strikethrough Text~~
1. First item
2. Second item
3. Third item
1. First item
1. Second item
1. Third item
1. First item
4. Second item
9. Third item
- First item
- Second item
- Third item
* First item
* Second item
* Third item
+ First item
+ Second item
+ Third item
[JSM YouTube](https://www.youtube.com/@javascriptmastery)
<https://www.youtube.com/@javascriptmastery>

[](https://jsmastery.pro)
`Inline Code` has back-ticks around it.
has back-ticks around it.
` ``
console.log('Hello World');
` ``
console.log('Hello World');
` ``javascript
console.log('Syntax Highlighting Example');
` ``
console.log('Syntax Highlighting Example');
## JavaScript Mastery
---
| Name | Age | Country |
|--------|-----|---------|
| John | 25 | USA |
| Maria | 30 | Canada |
| Liam | 22 | UK |
- [x] Complete the final report
- [ ] Submit project to the team
- [x] Review feedback from peers
- [ ] Prepare presentation slides
Congratulations! You’ve completed . Now that you’re familiar with the core syntax, you can create clean, readable documentation, notes, and content quickly and efficiently.
Keep practicing and experimenting with Markdown in your projects to make your writing more organized and visually appealing. It’s a simple but powerful tool that will become even more useful the more you use it.
Happy writing, and enjoy creating with Markdown! ✨
**_Bold and Italic Text_**
Bold and Italic Text
__*Bold and Italic Text*__
Bold and Italic Text
John |
25 |
USA |
Maria | 30 | Canada |
Liam | 22 | UK |