0.2.0 • Published 6 years ago

metalsmith-emoji v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

metalsmith-emoji

GitHub issues license node Greenkeeper badge Build Status

A Metalsmith plugin to process emoji and convert emoji shortnames, using the EmojiOne list.

Installation

$ npm install metalsmith-emoji

Usage

This plugin will only process emoji in markdown and HTML files by default. This can be changed through the pattern option below, which takes an array of minimatch patterns.

If you want the emoji to be images (PNG) instead of Unicode characters, set convertToImages to true.

Deprecated: If you don't want the plugin to convert shortnames (like :smile:) to actual emoji, set processShortnames to false.

Default Options

{
    pattern: ["**/*.md", "**/*.markdown", "**/*.html", "**/*.htm"],
    convertToImages: false
}

Example

var emoji = require('metalsmith-emoji');

metalsmith.use(emoji({
  pattern: ["**/*.md", "**/*.markdown", "**/*.html", "data/*"],
  convertToImages: true
}));
0.2.0

6 years ago

0.1.0

7 years ago

0.0.1

7 years ago