elmasse / remark-emoji

Remark markdown transformer to replace :emoji: in text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remark-emoji

Build Status

This is a remark plugin to replace :emoji: to real UTF-8 emojis in text.

Usage

remark().use(emoji [, options]);
const remark = require('remark');
const emoji = require('remark-emoji');

const doc = 'Emojis in this text will be replaced: :dog: :+1:';
console.log(remark().use(emoji).process(doc).contents);
// => Emojis in this text will be replaced: ๐Ÿถ ๐Ÿ‘

Options

options.padSpaceAfter

Setting to true means that an extra whitespace is added after emoji. This is useful when browser handle emojis with half character length and following character is hidden. Default value is false.

License

Distributed under the MIT License.

About

Remark markdown transformer to replace :emoji: in text

License:MIT License


Languages

Language:JavaScript 100.0%