Skip to content

Latest commit

 

History

History
114 lines (80 loc) · 1.46 KB

File metadata and controls

114 lines (80 loc) · 1.46 KB

Certainly! Here's a basic Markdown cheat sheet in Markdown format:

# Markdown Cheat Sheet

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Here's a quick reference guide:

## Headers

```markdown
# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*italic* or _italic_
**bold** or __bold__
***bold and italic***

Lists

Unordered List:

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2

Ordered List:

1. First item
2. Second item
   1. Subitem 2.1
   2. Subitem 2.2

Links

[Link Text](http://www.example.com)

Images

![Alt Text](image.jpg)

Blockquotes

> This is a blockquote.

Code

Inline Code:

`code`

Code Blocks:

```python
def hello_world():
    print("Hello, World!")

## Horizontal Rule

```markdown
---

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |

Line Break

Text before  
a line break.

Escaping Characters

\*This is not italic\*

This is just a basic cheat sheet. Markdown supports more features and customization. Refer to the official Markdown documentation for a comprehensive guide.


Feel free to customize it further based on your needs or add more advanced features as required.