wikijs-fork/server/modules/rendering/html-twemoji/renderer.js

15 lines
342 B
JavaScript

// const twemoji = require('twemoji')
// ------------------------------------
// HTML - Twemoji
// ------------------------------------
module.exports = {
init (input, conf) {
// TODO: Must limit to text nodes only (exclude code blocks, already processed emojis, etc.)
//
// return twemoji.parse(input)
return input
}
}