Welcome to PastePal

Your personal knowledge base and code snippet collection

16
Total Snippets

Quick Start

  • Browse snippets by category in the sidebar
  • Use the search bar to search through all snippet content
  • Add new snippets to src/content/snippets/
  • Set the category field in frontmatter to organize your snippets

Example Snippet Format

---
title: "Your Snippet Title"
category: "Python"
description: "Optional description"
tags: ["tag1", "tag2"]
---

# Your content here
````python
print("Hello World")
```