Start
This website is made with Svelte, which allows you to create really robust websites really easily. For this project, I’ve combined Svelte with Markdown. You know when you put asterisks around words to make them italic in whatsapp? That’s Markdown.
That means that I can write something like this:
<script>
let product = 5 * 5
</script>
> The **product** of five times five is {product}.
And it will appear on the page like this:
The product of five times five is 25.
In fact, you can look at the code for this page on GitHub. You’ll be surprised by how simple it looks.
←