harumaxy.com

Demonstration

This blog is constructed with ...

  • Dependencies
    • Svelte 5
    • Sveltekit
    • shadcn-svelte
    • TailwindCSS
    • Marked + Highlight.js
  • Cloudflare
    • Pages
    • D1

Typography

h1

h2

h3

h4

h5
h6

bold italic strikethrough

code

function fizzBuzz(current = 1, max = 100){
  if(current > max) return

  const msg = current % 15 === 0
    ? "fizz buzz"
    : current % 5 === 0
    ? "buzz"
    : current % 3 === 0 
    ? "fizz"
    : null
  if(msg) console.log(current + ": " + msg)
  
  fizzBuzz(current + 1, max)
}