- Introduction
- Headers
- Formatting Text
- Lists
- Links and Images
- Tables
- Code Blocks
- Git Commands Section
- Conclusion
Markdown is a lightweight markup language for creating formatted text using a plain-text editor. This guide covers common Markdown elements and how to use them.
Markdown uses # symbols for headers:
# H1
## H2
### H3
#### H4
##### H5
###### H6Example:
- Bold: Use
**Bold**→ Bold - Italic: Use
*Italic*→ Italic Strikethrough:Use~~Strikethrough~~→Strikethrough
- Item 1
- Item 2
- Sub-item- Item 1
- Item 2
- Sub-item
1. First Item
2. Second Item- First Item
- Second Item
[Link Text](https://example.com)
| Column 1 | Column 2 | Column 3 |
|----------|-----------|----------|
| Data 1 | Data 2 | Data 3 || Column 1 | Column 2 | Column 3 |
|---|---|---|
| Data 1 | Data 2 | Data 3 |
Inline code: `code` → code
Block of code:
def hello_world():
print("Hello, world!")# Initialize a repository
git init
# Add files to the staging area
git add .Markdown is a simple, flexible, and powerful language for creating documents and content. Use this template as a reference or guide for your Markdown projects.
- Bold Text:
**Bold** - Italic Text:
*Italic* Inline Code:`Code`- Hyperlink Example Edited by Shamu