🔸 Bullet Points
Prefix: "• "
apple
banana
cherry
Result:
• apple
• banana
• cherry
📋 HTML List Items
Prefix: "<li>" | Suffix: "</li>"
Home
About
Contact
Result:
<li>Home</li>
<li>About</li>
<li>Contact</li>
🔢 Numbered List
Enable: Add Line Numbers
Step One
Step Two
Step Three
Result:
1. Step One
2. Step Two
3. Step Three
🔍 Search Query Format
Suffix: " site:example.com"
how to bake
best laptop 2025
css grid tutorial
Result:
how to bake site:example.com
best laptop 2025 site:example.com
css grid tutorial site:example.com
💻 Code Commenting
Prefix: "// "
Initialize variables
Loop through array
Return result
Result:
// Initialize variables
// Loop through array
// Return result