aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgreen <dandelions@disroot.org>2025-03-23 02:32:47 +0100
committergreen <dandelions@disroot.org>2025-04-13 14:58:24 +0200
commit1a6c3c5e815933e42f1b0be0e0fa2d44ac78036b (patch)
tree089366cc2ac85f6cb0e33bfca9ed64e1921b0b67
parent21a99e55081a58f1396d49fb70824f91a8e7c2ab (diff)
better control over the emoji class
-rw-r--r--html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c
index f3d5ee9..be89453 100644
--- a/html.c
+++ b/html.c
@@ -69,6 +69,7 @@ xs_str *replace_shortnames(xs_str *s, const xs_list *tag, int ems, const char *p
}
xs *style = xs_fmt("height: %dem; width: %dem; vertical-align: middle;", ems, ems);
+ xs *class = xs_fmt("snac-emoji snac-emoji-%d-em", ems);
const xs_dict *v;
int c = 0;
@@ -108,7 +109,7 @@ xs_str *replace_shortnames(xs_str *s, const xs_list *tag, int ems, const char *p
xs_html_attr("src", url),
xs_html_attr("alt", n),
xs_html_attr("title", n),
- xs_html_attr("class", "snac-emoji"),
+ xs_html_attr("class", class),
xs_html_attr("style", style));
xs *s1 = xs_html_render(img);