Skip to content

Instantly share code, notes, and snippets.

@rafialikhan
Created May 8, 2025 09:49
Show Gist options
  • Save rafialikhan/ff65c0fabb3153b623be0bcf60669db5 to your computer and use it in GitHub Desktop.
Save rafialikhan/ff65c0fabb3153b623be0bcf60669db5 to your computer and use it in GitHub Desktop.
Markdown example
# 🌟 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
![Markdown Logo](https://markdown-here.com/img/icon256.png)
---
## πŸ”’ 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