From 3fe6701f6ac5dcf949467f0ac582ec67e52fe288 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Mon, 5 Jul 2021 00:18:34 +0300 Subject: feat: improve custom emoji accessibility --- compile_emoji_sedstring.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compile_emoji_sedstring.sh b/compile_emoji_sedstring.sh index ef22247..2fb2f6d 100755 --- a/compile_emoji_sedstring.sh +++ b/compile_emoji_sedstring.sh @@ -1,7 +1,10 @@ #!/bin/sh +SIZE=24px +STYLE="margin-bottom: -4px;" + cd public/emoji; for EMOJI in *; do BASENAME=${EMOJI%.*} - echo "s|:${BASENAME}:||g; " + echo "s|:${BASENAME}:|\\\"${BASENAME}-icon\\\"|g; " done -- cgit v1.2.3