mirror of
https://github.com/twitter/twemoji.git
synced 2024-11-02 02:29:54 +00:00
34 lines
724 B
Bash
34 lines
724 B
Bash
createsvg() {
|
|
local d
|
|
local svg
|
|
for d in assets/*.ai; do
|
|
svg=$(echo "$d" | sed 's/.ai/.svg/')
|
|
echo "creating $svg ..."
|
|
inkscape -f "$d" -l "$svg"
|
|
done
|
|
mkdir -p svg
|
|
mv assets/*.svg svg/
|
|
}
|
|
|
|
viewport() {
|
|
local f
|
|
for f in svg/*.svg; do
|
|
content=$(
|
|
cat "$f" |
|
|
sed 's/<!-- Created with Inkscape (http:\/\/inkscape.org\/) -->//' |
|
|
sed 's/viewBox="0 0 47.5 47.5"//' |
|
|
sed 's/height="47.5"/viewBox="0 0 47.5 47.5"/' |
|
|
sed 's/width="47.5"/style="enable-background:new 0 0 47.5 47.5;"/' |
|
|
sed -e ':a' -e 'N' -e '$!ba' -e 's/\n//g' |
|
|
sed -e 's/ */ /g' |
|
|
sed -e 's/ \/>/\/>/g'
|
|
)
|
|
echo "$f"
|
|
echo "$content" >"$f"
|
|
|
|
done
|
|
}
|
|
|
|
createsvg
|
|
|
|
viewport |