Multiple feeds and improve rendering

This commit is contained in:
Bad Manners 2024-09-14 21:55:46 -03:00
parent dadbd32e1b
commit d56a8cc95d
No known key found for this signature in database
GPG key ID: 8C88292CCB075609
13 changed files with 273 additions and 184 deletions

View file

@ -26,15 +26,14 @@ relatedStories:
import NoteTooltip from "@components/NoteTooltip.astro";
export let count = 0;
export function resetCount() {
count = 0;
}
export function getCount() {
count += 1;
return count;
}
{resetCount()}
{function () {
count = 0;
}()}
Going over the story and breaking it down was a fun process, all in all. But this was originally a text document, which I had to completely manually refit into this post you're reading (oof...!). Still, for the sake of posteriority, I think it was worth the effort.