blob: 006e240527bbcc479626ff723bd8b6878ba902be (
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=20px
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
|