1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2024-09-28 23:07:30 +00:00
bibliogram/src/site/pug/includes/display_structured.pug
Cadence Fish 0ea95d1943
Clickable usernames and hashtags
Should work well enough. Report edge cases.
2020-02-04 03:30:19 +13:00

12 lines
373 B
Plaintext

mixin display_structured(parts)
each part in parts
if part.type === "text"
= part.text
else if part.type === "user"
a(href="/u/"+part.user).link-to-user= part.text
else if part.type === "hashtag"
//- todo: add link to explore page, when explore page exists.
a.link-to-hashtag= part.text
else
| [UNKNOWN PART TYPE #{part.type}, TEXT:] [#{part.text}]