diff --git a/docs/configuration.md b/docs/configuration.md
index cd45fbe3d..7fa203ec1 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -398,20 +398,6 @@ window.$docsify = {
Note that if you are running an external script, e.g. an embedded jsfiddle demo, make sure to include the [external-script](plugins.md?id=external-script) plugin.
-## noEmoji
-
-- type: `Boolean`
-
-Disabled emoji parse.
-
-```js
-window.$docsify = {
- noEmoji: true,
-};
-```
-
-?> If this option is `false` but you don't want to emojify some specific colons, [refer to this](https://github.com/docsifyjs/docsify/issues/742#issuecomment-586313143)
-
## mergeNavbar
- type: `Boolean`
diff --git a/docs/plugins.md b/docs/plugins.md
index b7ccb971f..308eba367 100644
--- a/docs/plugins.md
+++ b/docs/plugins.md
@@ -91,13 +91,18 @@ Configure by `data-ga`.
## emoji
-The default is to support parsing emoji. For example `:100:` will be parsed to :100:. But it is not precise because there is no matching non-emoji string. If you need to correctly parse the emoji string, you need install this plugin.
+Emoji parsing is disabled by default.
+To enable emoji parsing, you need to add the following plugin.
```html
```
-?> If you don't want to parse to emoji, you can use __colon__ or `:`. If you need to use in the title, we recommend using `:`. For example, `:100:`
+Only [Github emojis](https://gist.github.com/rxaviers/7360908) are searched and replaced.
+
+Code blocks are not parsed, thus :100: won't be rendered here: `:100:`.
+
+?> If you don't want a specific emoji to be parsed, you can replace a colon by __colon__ or `:`. If you need to use in the title, we recommend using `:`. For example, `:100:`
## External Script
diff --git a/src/core/config.js b/src/core/config.js
index 1aa69a796..31ea6ed06 100644
--- a/src/core/config.js
+++ b/src/core/config.js
@@ -21,7 +21,6 @@ export default function(vm) {
nameLink: window.location.pathname,
autoHeader: false,
executeScript: null,
- noEmoji: false,
ga: '',
ext: '.md',
mergeNavbar: false,
diff --git a/src/core/render/compiler.js b/src/core/render/compiler.js
index 557507721..ae0bf8520 100644
--- a/src/core/render/compiler.js
+++ b/src/core/render/compiler.js
@@ -103,7 +103,7 @@ export class Compiler {
html = compile.parser(text);
}
- html = config.noEmoji ? html : emojify(html);
+ html = emojify(html);
slugify.clear();
return html;
diff --git a/src/core/render/emojify.js b/src/core/render/emojify.js
index 376c55a60..9b1ffe700 100644
--- a/src/core/render/emojify.js
+++ b/src/core/render/emojify.js
@@ -1,20 +1,14 @@
import { inBrowser } from '../util/env';
-function replace(m, $1) {
- return (
- '
'
- );
-}
-
export function emojify(text) {
+ if (!window.emojify) {
+ return text.replace(/__colon__/g, ':');
+ }
+
return text
.replace(/<(pre|template|code)[^>]*?>[\s\S]+?<\/(pre|template|code)>/g, m =>
m.replace(/:/g, '__colon__')
)
- .replace(/:([a-z0-9_\-\+]+?):/g, (inBrowser && window.emojify) || replace)
+ .replace(/:([a-z0-9_\-\+]+?):/g, inBrowser && window.emojify)
.replace(/__colon__/g, ':');
}