remark-html-emoji-image

1.0.0 • Public • Published

remark-html-emoji-image Build Status

remark plug-in to transform emoji unicodes into html images

Installation

npm:

npm install remark-html-emoji-image

Usage

var remark = require('remark');
var htmlEmojiImage = require('remark-html-emoji-image');
 
var doc = remark()
  .use(htmlEmojiImage, {base: 'https://example.com/'})
  .processSync('😄 👍')
  .toString();
 
console.log(doc);

Yields:

![](https://example.com/smile.png ":smile:") ![](https://example.com/+1.png ":+1:")

API

remark().use(htmlEmojiImage[, options])

Transform emoji unicodes into html images (like 😄 into ![](http://example.com/smile.png ":smile:")).

options.base

string — Required base URL to use for emoji images.

options.extname

string, default: .png — Optional extension (with dot) to use after the emoji name.

License

MIT © Max Wu

Readme

Keywords

Package Sidebar

Install

npm i remark-html-emoji-image

Weekly Downloads

30

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jackycute