You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
489 B

Template.registerHelper('joypixels', new Template('emoji-toolkit', function () {
var view = this;
var content;
if (view.templateContentBlock) {
// this is for the block usage eg: {{#emoji}}:smile:{{/emoji}}
content = Blaze._toText(view.templateContentBlock, HTML.TEXTMODE.STRING);
} else {
// this is for the direct usage eg: {{> emoji ':blush:'}}
content = Blaze.getData(view);
}
return HTML.Raw(joypixels.toImage(content));
}));