New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gitbook-plugin-advanced-emoji

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitbook-plugin-advanced-emoji - npm Package Compare versions

Comparing version

to
0.0.4

10

index.js

@@ -15,7 +15,9 @@ module.exports = {

hooks: {
"page": function(page) {
page.content = page.content.replace(":white_check_mark:", "FOO");
return page;
}
"page:before": function(page) {
/*page.content = page.content.replace(/:white_check_mark:/g, "FOO");*/
var emojify = require("emojify.js");
page.content = emojify.replace(page.content);
return page;
}
}
};

@@ -5,3 +5,3 @@ {

"main": "index.js",
"version": "0.0.3",
"version": "0.0.4",
"engines": {

@@ -27,3 +27,6 @@ "gitbook": ">=2.5.0"

"url": "https://github.com/codeclou/gitbook-plugin-advanced-emoji/issues"
},
"dependencies": {
"emojify.js": "^1.1.0"
}
}