Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

commonmark-twemoji

wilfredh21ISC1.1.0

apply twemoji rendering to commonmark source

commonmark, emoji, twemoji

readme

commonmark-twemoji

Applies twemoji rendering to commonmark source code.

Usage

var commonmark = require("commonmark");
var twemoji = require("commonmark-twemoji");

var reader = new commonmark.Parser();
var writer = new commonmark.HtmlRenderer();

var parsed = reader.parse(src);
var transformed = twemoji.transform(parsed);

var htmlSrc = writer.render(transformed);