mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
15 lines
342 B
JavaScript
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
|
|
}
|
|
}
|