mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2026-03-02 10:41:36 +00:00
Clickable usernames and hashtags
Should work well enough. Report edge cases.
This commit is contained in:
parent
1fcdfce868
commit
0ea95d1943
9 changed files with 105 additions and 7 deletions
11
src/site/pug/includes/display_structured.pug
Normal file
11
src/site/pug/includes/display_structured.pug
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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}]
|
||||
Loading…
Add table
Add a link
Reference in a new issue