1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-07-01 02:19:09 +00:00

improved the example to exclude ®, © and ™

This commit is contained in:
Andrea Giammarchi 2014-12-19 14:56:16 +00:00
parent d82fa62004
commit c23dc3f27d
2 changed files with 4 additions and 3 deletions

View File

@ -238,8 +238,9 @@ To exclude certain characters from being replaced by twemoji.js, call twemoji.pa
twemoji.parse(document.body, {
callback: function(icon, options, variant) {
switch ( icon ) {
case 'a9': // copyright
case 'ae': // trademark
case 'a9': // copyright ©
case 'ae': // trademark ®
case '2122': // team ™
return false;
}
return ''.concat(options.base, options.size, '/', icon, options.ext);

2
svg.sh
View File

@ -15,7 +15,7 @@ viewport() {
for f in svg/*.svg; do
content=$(
cat "$f" |
sed 's/<!-- Created with Inkscape (http:\/\/www.inkscape.org\/) -->//' |
sed 's/<!-- Created with Inkscape (http:\/\/inkscape.org\/) -->//' |
sed 's/width="47.5"/viewBox="0 0 47.5 47.5"/' |
sed 's/height="47.5"/style="enable-background:new 0 0 47.5 47.5;"/' |
sed -e ':a' -e 'N' -e '$!ba' -e 's/\n//g' |