blob: 3856866c2b520f2c3caa19af60844b2061b1e035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Return a large sed command that will substitute all :emoji: listed in /public/emoji with <img>
SIZE=24px
STYLE="margin-bottom: -4px;"
cd public/emoji;
for EMOJI in *;
do
BASENAME=${EMOJI%.*}
echo "s|:${BASENAME}:|<img src=\\\"/public/emoji/${EMOJI}\\\" alt=\\\"${BASENAME}-icon\\\" height=\\\"${SIZE}\\\" width=\\\"${SIZE}\\\" style=\\\"${STYLE}\\\">|g; "
done
|