Skip to content

Commit

Permalink
index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
D0n9X1n committed Jun 14, 2017
1 parent 95a2043 commit 59df479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ hexo.extend.filter.register("after_post_render", function (data) {
data.content = CryptoJS.enc.Utf8.parse(data.content);
data.content = CryptoJS.enc.Base64.stringify(data.content);
data.content = CryptoJS.AES.encrypt(data.content, String(data.password)).toString();
console.log(data.content);
// console.log(data.content);
data.template = data.template.replace('{{content}}', data.content);
data.template = data.template.replace('{{message}}', data.message);
data.template = data.template.replace('{{message}}', data.message);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "2.0.0"
"version": "2.0.1"
}

0 comments on commit 59df479

Please sign in to comment.