Created
May 8, 2025 09:49
-
-
Save rafialikhan/ff65c0fabb3153b623be0bcf60669db5 to your computer and use it in GitHub Desktop.
Markdown example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# π Markdown Demo: All-In-One Cheat Sheet | |
Welcome to your **Markdown playground**. Below is a full showcase of what's possible with standard Markdown. | |
--- | |
## π Headers | |
# H1 - Main Title | |
## H2 - Section Title | |
### H3 - Subsection | |
#### H4 | |
##### H5 | |
###### H6 | |
--- | |
## βοΈ Text Formatting | |
**Bold** | |
*Italic* | |
***Bold & Italic*** | |
~~Strikethrough~~ | |
<sub>Subscript</sub> | |
<sup>Superscript</sup> | |
--- | |
## π Links | |
[OpenAI](https://openai.com) | |
<https://github.com> | |
--- | |
## πΌοΈ Images | |
 | |
--- | |
## π’ Lists | |
### Unordered List | |
- Apple | |
- Banana | |
- Cavendish | |
- Plantain | |
### Ordered List | |
1. First | |
2. Second | |
1. Sub-item | |
2. Sub-item | |
--- | |
## β Task List | |
- [x] Learn Markdown | |
- [ ] Build a cheat sheet | |
- [ ] Share with team | |
--- | |
## π¦ Code Blocks | |
### Inline Code | |
Use `console.log('Hello, World!')` for debug logging. | |
### Multiline Code Block | |
<pre> | |
```js | |
function greet(name) { | |
console.log(`Hello, ${name}!`); | |
} | |
greet('ChatGPT'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment