We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aee074 commit 936d566Copy full SHA for 936d566
src/core/config.js
@@ -21,6 +21,7 @@ export default function (vm) {
21
nameLink: window.location.pathname,
22
autoHeader: false,
23
executeScript: null,
24
+ nativeEmoji: true,
25
noEmoji: false,
26
ga: '',
27
ext: '.md',
src/core/render/compiler.js
@@ -104,7 +104,7 @@ export class Compiler {
104
html = compile.parser(text);
105
}
106
107
- html = config.noEmoji ? html : emojify(html);
+ html = config.noEmoji ? html : emojify(html, config.nativeEmoji);
108
slugify.clear();
109
110
return html;
0 commit comments