H2 Header
H3 Header
This sentence is full of bold text, italicized text, bold and italicized text, inline code
, external Link ↗etc.
Blockquotes /
Ordered list, unordered list, nested list
- Item #1
- Nested unordered item #1
- Nested unordered item #2
Inline Images
## Code Snippets
// middleware.ts
export default function middleware (req, ev) {
console.log('Edit and run at the edge!')
return new Response({
ip: req.ip,
geo: req.geo, // this will spin the globe!
ua: req.ua
})
}