diff options
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1523,6 +1523,14 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, xs_html_raw(" 📌 "))); } + if (user && is_bookmarked(user, id)) { + /* add a bookmark emoji */ + xs_html_add(score, + xs_html_tag("span", + xs_html_attr("title", L("Bookmarked")), + xs_html_raw(" 🔖 "))); + } + if (strcmp(type, "Question") == 0) { /* add the ballot box emoji */ xs_html_add(score, |