mirror of
https://github.com/zhigang1992/docsify.git
synced 2026-04-17 22:44:25 +08:00
7 lines
306 B
JavaScript
7 lines
306 B
JavaScript
export function emojify (text) {
|
|
return text
|
|
.replace(/<(pre|template)[^>]*?>([\s\S]+)<\/(pre|template)>/g, m => m.replace(/:/g, '__colon__'))
|
|
.replace(/:(\w+?):/ig, '<img class="emoji" src="https://assets-cdn.github.com/images/icons/emoji/$1.png" alt="$1" />')
|
|
.replace(/__colon__/g, ':')
|
|
}
|