FOR TALENT
Blog Explore the trends. Codebrew Stay up to date. Interview Questions Get prepared. Coder Glossary Learn the concepts. Portfolio Showcase your projects. University Preferences Make the right choice. Roadmap Move forward step by step. Cheat Sheets Look up the shortcuts. Free Software Tools Get a hand. Podcast Listen on the go. Salaries Learn what the market pays. AI Tools Explore AI.FOR COMPANIES
Blog HR trends. Codebrew Stay in the loop. HR Webinars Hear from the experts. Case Studies Get inspired. E-book Download the guides. HR Calculation Tools Calculate with ease.
This cheat sheet covers the most common fundamentals of the Markdown syntax.
// Basic Markdown Example
// Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
// Heading Levels
// Text Styles
// Text Formatting Example
This is **bold**, *italic*, ~~strikethrough~~, and `inline code`.
// Links
[Inline Link](https://www.example.com)
[Reference Link][1]
[1]: https://www.example.com
// Link Types
// Images

![Reference Image][img1]
[img1]: https://www.example.com/image.png
// Image Syntax
// Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
// Ordered List
1. First
2. Second
3. Third
// Task List
- [x] Task 1
- [ ] Task 2
// Blockquotes
> This is a blockquote.
>
> - You can nest lists
> - And other Markdown elements
// Blockquote Tips
// Inline Code
Use `code` for inline code.
// Code Block
```python
def hello():
print("Hello, Markdown!")
```
// Code Block Tips
// Tables
| Syntax | Description |
|--------|-------------|
| Header | Title |
| Cell | Cell |
// Table Tips
// Horizontal Rule
---
***
___
// Horizontal Rule Tips
// Escaping Markdown
\*This text is not italic*
// Escapable Characters
// Footnotes
Here is a footnote reference,[^1]
[^1]: Here is the footnote.
// Reference Links
// Emoji
I :heart: Markdown! :smile:
// Popular Emoji Codes
// Inline HTML
<span style="color: red;">Red text</span>
// HTML Elements in Markdown
// MathJax/LaTeX
Inline math: $E=mc^2$
Block math:
$$
\int_0^\infty e^{-x} dx = 1
$$
// Math Syntax
// Best Practices
Get inspired, learn, join competitions and grow in your job!
Sign up now