The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

characters: fix anchor links

Closes #761

Guess who forgot to port behavior from Rust to JavaScript!

Xe Iaso 988bae1a c09361b9

+1 -1
+1 -1
lume/src/characters.njk
··· 5 5 --- 6 6 7 7 {% for character in characters %} 8 - <h2 id="{{ character.name }}" class="text-2xl my-4">{{ character.name }}</h2> 8 + <h2 id="{{ character.name.toLowerCase() }}" class="text-2xl my-4">{{ character.name }}</h2> 9 9 <p class="mb-4 text-fg-2 dark:text-fgDark-2">{{ character.pronouns.nominative }}/{{ character.pronouns.accusative }}</p> 10 10 {{ comp.XeblogSticker({ name: character.name, mood: character.defaultPose }) | safe }} 11 11 <p class="mb-4">{{ character.description | md | safe }}</p>