-
+
diff --git a/atom.xml b/atom.xml
index 6d37fa6e1..3b2209f56 100644
--- a/atom.xml
+++ b/atom.xml
@@ -282,7 +282,7 @@
2018-01-30T04:14:00.000Z
2018-05-04T10:01:55.000Z
- 前一段时间,发现了一个评论系统很好用,果断把这个评论系统换到自己的博客里了。所以本文主要讲在 Hexo
的 NexT
主题中如何使用 Wildfire
,至于其他的博客以及其他的主题中如何使用的问题,我就不多说了。有需求的朋友可以去项目主页提问,或者在这里提问也可以。如果我懂得话一定会回答的。
修改 NexT 评论模板
在你的博客项目中,打开./themes/next/layout/_partials/comments.swig 这个文件。
将文件尾部的内容:
1 2 3 4 5 6 7 8 9 10
| {% if page.comments %} <div class="comments" id="comments"> ... ... {% elseif theme.livere_uid %} <div id="lv-container" data-id="city" data-uid="{{ theme.livere_uid }}"></div> {% endif %} </div> {% endif %}
|
修改为成下面的内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| {% if page.comments %} <div class="comments" id="comments"> ... ... {% elseif theme.livere_uid %} <div id="lv-container" data-id="city" data-uid="{{ theme.livere_uid }}"></div> {% elseif theme.wildfire.enable %} <style type="text/css"> .wildfire_thread a {border-bottom: none} </style> <div class="wildfire_thread"></div> <script type="text/javascript"> var wildfireConfig = () => ({ databaseProvider: '{{ theme.wildfire.database_provider }}', databaseConfig: { {% if (theme.wildfire.database_provider) === 'wilddog' %} siteId: '{{ theme.wildfire.site_id }}' {% elseif (theme.wildfire.database_provider) === 'firebase' %} apiKey: '{{ theme.wildfire.api_key }}', authDomain: '{{ theme.wildfire.auth_domain }}', databaseURL: '{{ theme.wildfire.database_url }}', projectId: '{{ theme.wildfire.project_id }}', storageBucket: '{{theme.wildfire.storage_bucket}}', messagingSenderId: '{{theme.wildfire.messaging_sender_id}}' {% endif %} }, theme: '{{theme.wildfire.theme}}', locale: '{{theme.wildfire.locale}}' }) </script> <script src='https://unpkg.com/wildfire/dist/wildfire.auto.js'></script> {% endif %} </div> {% endif %}
|
然后保存。
增加设置内容
打开主题设置文件 ./themes/next/_config.yml
,注意:不是站点设置文件。
将下面的代码复制到合适的位置(包含全部注释):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| wildfire: enable: true theme: light locale: zh-CN database_provider: wilddog site_id: site_id avatarURL: https://image.flaticon.com/icons/svg/621/621863.svg
|
需要注意的是,复制的时候不要修改这个配置的缩进关系。另外 Wilddog
和 Firebase
两者的配置只能选择其一。比如要使用 Wilddog
的话,配置内容就如下:
1 2 3 4 5 6
| wildfire: enable: true theme: light locale: zh-CN database_provider: wilddog site_id: wdg_my_site_id
|
如果要使用 Firebase
则配置选择为如下:
1 2 3 4 5 6 7 8 9 10 11
| wildfire: enable: true theme: light locale: zh-CN database_provider: firebase api_key: your_apiKey auth_domain: your_authDomain database_url: your_databaseURL project_id: your_projectId storage_bucket: your_storageBucket messaging_sender_id: your_messagingSenderId
|
上面的值呢,就需要大家从自己建好的 APP
应用中拷贝过来了。
完成部署
下面就可以直接 hexo generate
生成就可以了。很简单吧~
当然如果还有什么问题,欢迎在这里提问哦。
]]>
+ 前一段时间,发现了一个评论系统很好用,果断把这个评论系统换到自己的博客里了。所以本文主要讲在 Hexo
的 NexT
主题中如何使用 Wildfire
,至于其他的博客以及其他的主题中如何使用的问题,我就不多说了。有需求的朋友可以去项目主页提问,或者在这里提问也可以。如果我懂得话一定会回答的。
修改 NexT 评论模板
在你的博客项目中,打开./themes/next/layout/_partials/comments.swig 这个文件。
将文件尾部的内容:
1 2 3 4 5 6 7 8 9 10
| {% if page.comments %} <div class="comments" id="comments"> ... ... {% elseif theme.livere_uid %} <div id="lv-container" data-id="city" data-uid="{{ theme.livere_uid }}"></div> {% endif %} </div> {% endif %}
|
修改为成下面的内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| {% if page.comments %} <div class="comments" id="comments"> ... ... {% elseif theme.livere_uid %} <div id="lv-container" data-id="city" data-uid="{{ theme.livere_uid }}"></div> {% elseif theme.wildfire.enable %} <style type="text/css"> .wildfire_thread a {border-bottom: none} </style> <div class="wildfire_thread"></div> <script type="text/javascript"> var wildfireConfig = () => ({ databaseProvider: '{{ theme.wildfire.database_provider }}', databaseConfig: { {% if (theme.wildfire.database_provider) === 'wilddog' %} siteId: '{{ theme.wildfire.site_id }}' {% elseif (theme.wildfire.database_provider) === 'firebase' %} apiKey: '{{ theme.wildfire.api_key }}', authDomain: '{{ theme.wildfire.auth_domain }}', databaseURL: '{{ theme.wildfire.database_url }}', projectId: '{{ theme.wildfire.project_id }}', storageBucket: '{{theme.wildfire.storage_bucket}}', messagingSenderId: '{{theme.wildfire.messaging_sender_id}}' {% endif %} }, theme: '{{theme.wildfire.theme}}', locale: '{{theme.wildfire.locale}}' }) </script> <script src='https://unpkg.com/wildfire/dist/wildfire.auto.js'></script> {% endif %} </div> {% endif %}
|
然后保存。
增加设置内容
打开主题设置文件 ./themes/next/_config.yml
,注意:不是站点设置文件。
将下面的代码复制到合适的位置(包含全部注释):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| wildfire: enable: true theme: light locale: zh-CN database_provider: wilddog site_id: site_id avatarURL: https://image.flaticon.com/icons/svg/621/621863.svg
|
需要注意的是,复制的时候不要修改这个配置的缩进关系。另外 Wilddog
和 Firebase
两者的配置只能选择其一。比如要使用 Wilddog
的话,配置内容就如下:
1 2 3 4 5 6
| wildfire: enable: true theme: light locale: zh-CN database_provider: wilddog site_id: wdg_my_site_id
|
如果要使用 Firebase
则配置选择为如下:
1 2 3 4 5 6 7 8 9 10 11
| wildfire: enable: true theme: light locale: zh-CN database_provider: firebase api_key: your_apiKey auth_domain: your_authDomain database_url: your_databaseURL project_id: your_projectId storage_bucket: your_storageBucket messaging_sender_id: your_messagingSenderId
|
上面的值呢,就需要大家从自己建好的 APP
应用中拷贝过来了。
完成部署
下面就可以直接 hexo generate
生成就可以了。很简单吧~
当然如果还有什么问题,欢迎在这里提问哦。
]]>
@@ -466,10 +466,10 @@
-
-
+
+
diff --git a/baidusitemap.xml b/baidusitemap.xml
index 6e3a5af6b..64f5aa5f7 100644
--- a/baidusitemap.xml
+++ b/baidusitemap.xml
@@ -301,25 +301,19 @@
- https://blog.ihoey.com/posts/Hexo/2015-08-28-hello-world.html
+ https://blog.ihoey.com/posts/javascript/2016-07-22-javascript-Function.html
2018-05-10T08:45:23.000Z
- Hexo 最常用的几个命令
- 2015-08-28T10:29:33.000Z
+ js高级与面向对象之函数
+ 2016-07-22T11:40:39.000Z
- hexo
-
- 梦魇小栈
-
- 梦魇
-
- houyi1121
+ Function
-
+
@@ -327,19 +321,25 @@
- https://blog.ihoey.com/posts/javascript/2016-07-22-javascript-Function.html
+ https://blog.ihoey.com/posts/Hexo/2015-08-28-hello-world.html
2018-05-10T08:45:23.000Z
- js高级与面向对象之函数
- 2016-07-22T11:40:39.000Z
+ Hexo 最常用的几个命令
+ 2015-08-28T10:29:33.000Z
- Function
+ hexo
+
+ 梦魇小栈
+
+ 梦魇
+
+ houyi1121
-
+
@@ -419,12 +419,12 @@
- https://blog.ihoey.com/posts/javascript/2016-11-20-javascript-jquery-part3.html
+ https://blog.ihoey.com/posts/javascript/2016-11-21-javascript-jquery-part4.html
2018-05-10T08:45:23.000Z
- JQuery分析及实现part3之属性模块功能及实现
- 2016-11-20T03:51:28.000Z
+ JQuery分析及实现part4之DOM操作模块功能及实现
+ 2016-11-21T11:08:10.000Z
原生Js
@@ -443,12 +443,12 @@
- https://blog.ihoey.com/posts/javascript/2016-11-23-javascript-jquery-part5.html
+ https://blog.ihoey.com/posts/javascript/2016-11-20-javascript-jquery-part3.html
2018-05-10T08:45:23.000Z
- JQuery分析及实现part5之事件模块功能及实现
- 2016-11-23T02:27:16.000Z
+ JQuery分析及实现part3之属性模块功能及实现
+ 2016-11-20T03:51:28.000Z
原生Js
@@ -491,18 +491,18 @@
- https://blog.ihoey.com/posts/javascript/2016-06-04-javascript-prototype.html
+ https://blog.ihoey.com/posts/javascript/2016-11-23-javascript-jquery-part5.html
2018-05-10T08:45:23.000Z
- js高级与面向对象之原型
- 2016-06-04T05:41:47.000Z
+ JQuery分析及实现part5之事件模块功能及实现
+ 2016-11-23T02:27:16.000Z
- javascript
+ 原生Js
- 原型
+ Js框架
- 原型的基本概念
+ JQuery
@@ -515,14 +515,18 @@
- https://blog.ihoey.com/posts/javascript/2016-07-09-javascript-prototype-chain.html
+ https://blog.ihoey.com/posts/javascript/2016-11-24-javascript-jquery-part6.html
2018-05-10T08:45:23.000Z
- js高级与面向对象之原型链
- 2016-07-09T11:41:47.000Z
+ JQuery分析及实现part6之动画模块功能及实现
+ 2016-11-24T01:38:13.000Z
- 原型链
+ 原生Js
+
+ Js框架
+
+ JQuery
@@ -535,18 +539,14 @@
- https://blog.ihoey.com/posts/javascript/2016-11-21-javascript-jquery-part4.html
+ https://blog.ihoey.com/posts/javascript/2016-07-09-javascript-prototype-chain.html
2018-05-10T08:45:23.000Z
- JQuery分析及实现part4之DOM操作模块功能及实现
- 2016-11-21T11:08:10.000Z
+ js高级与面向对象之原型链
+ 2016-07-09T11:41:47.000Z
- 原生Js
-
- Js框架
-
- JQuery
+ 原型链
@@ -559,18 +559,18 @@
- https://blog.ihoey.com/posts/javascript/2016-11-24-javascript-jquery-part6.html
+ https://blog.ihoey.com/posts/javascript/2016-06-04-javascript-prototype.html
2018-05-10T08:45:23.000Z
- JQuery分析及实现part6之动画模块功能及实现
- 2016-11-24T01:38:13.000Z
+ js高级与面向对象之原型
+ 2016-06-04T05:41:47.000Z
- 原生Js
+ javascript
- Js框架
+ 原型
- JQuery
+ 原型的基本概念
@@ -1224,10 +1224,10 @@
重新介绍 JavaScript(JS全面系列教程)
2017-07-03T10:51:21.000Z
- Function
-
javascript
+ Function
+
diff --git a/categories/Android/index.html b/categories/Android/index.html
index 996039ec0..21aa51419 100644
--- a/categories/Android/index.html
+++ b/categories/Android/index.html
@@ -994,7 +994,7 @@
-
+
diff --git a/categories/CSS3/index.html b/categories/CSS3/index.html
index ee584c580..c9f4e72af 100644
--- a/categories/CSS3/index.html
+++ b/categories/CSS3/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Canvas/index.html b/categories/Canvas/index.html
index 8b0f840e3..9b6a10112 100644
--- a/categories/Canvas/index.html
+++ b/categories/Canvas/index.html
@@ -1022,7 +1022,7 @@
-
+
diff --git a/categories/Cron/index.html b/categories/Cron/index.html
index 0c19b9d9b..cc0b0d5fc 100644
--- a/categories/Cron/index.html
+++ b/categories/Cron/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Git/index.html b/categories/Git/index.html
index 5a67ea831..8236b074f 100644
--- a/categories/Git/index.html
+++ b/categories/Git/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Hexo/index.html b/categories/Hexo/index.html
index 427b163b9..2a9ef5546 100644
--- a/categories/Hexo/index.html
+++ b/categories/Hexo/index.html
@@ -994,7 +994,7 @@
-
+
diff --git a/categories/Interview/index.html b/categories/Interview/index.html
index e7fb5a22a..82f838683 100644
--- a/categories/Interview/index.html
+++ b/categories/Interview/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Linux/index.html b/categories/Linux/index.html
index 9c5a6fd29..d6bac3e18 100644
--- a/categories/Linux/index.html
+++ b/categories/Linux/index.html
@@ -1082,7 +1082,7 @@
-
+
diff --git a/categories/Linux/page/2/index.html b/categories/Linux/page/2/index.html
index 294c90672..f55553782 100644
--- a/categories/Linux/page/2/index.html
+++ b/categories/Linux/page/2/index.html
@@ -998,7 +998,7 @@
-
+
diff --git a/categories/Mac/index.html b/categories/Mac/index.html
index 5b9a46e6b..e106f6857 100644
--- a/categories/Mac/index.html
+++ b/categories/Mac/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Markdown/index.html b/categories/Markdown/index.html
index 18ebdf060..1ba5730dd 100644
--- a/categories/Markdown/index.html
+++ b/categories/Markdown/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/MongoDB/index.html b/categories/MongoDB/index.html
index 7e3fd708f..2904b50ce 100644
--- a/categories/MongoDB/index.html
+++ b/categories/MongoDB/index.html
@@ -994,7 +994,7 @@
-
+
diff --git a/categories/MySQL/index.html b/categories/MySQL/index.html
index 8c1a15e5c..284fcb2ee 100644
--- a/categories/MySQL/index.html
+++ b/categories/MySQL/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/Node/index.html b/categories/Node/index.html
index b2ba0265b..eaea9364e 100644
--- a/categories/Node/index.html
+++ b/categories/Node/index.html
@@ -1082,7 +1082,7 @@
-
+
diff --git a/categories/Node/page/2/index.html b/categories/Node/page/2/index.html
index c2a321269..42c86a338 100644
--- a/categories/Node/page/2/index.html
+++ b/categories/Node/page/2/index.html
@@ -1026,7 +1026,7 @@
-
+
diff --git a/categories/index.html b/categories/index.html
index 65382cbf2..623d9a157 100644
--- a/categories/index.html
+++ b/categories/index.html
@@ -1062,7 +1062,7 @@ 分类
-
+
diff --git a/categories/javascript/PWA/index.html b/categories/javascript/PWA/index.html
index bc984614a..893abe5c4 100644
--- a/categories/javascript/PWA/index.html
+++ b/categories/javascript/PWA/index.html
@@ -966,7 +966,7 @@
-
+
diff --git a/categories/javascript/index.html b/categories/javascript/index.html
index 4a7f5c3f8..e3c5a0cc1 100644
--- a/categories/javascript/index.html
+++ b/categories/javascript/index.html
@@ -1082,7 +1082,7 @@
-
+
diff --git a/categories/javascript/page/2/index.html b/categories/javascript/page/2/index.html
index b011af0fc..34412d90b 100644
--- a/categories/javascript/page/2/index.html
+++ b/categories/javascript/page/2/index.html
@@ -1082,7 +1082,7 @@
- https://blog.ihoey.com/posts/Hexo/2015-08-28-hello-world.html
+ https://blog.ihoey.com/posts/javascript/2016-07-22-javascript-Function.html
2018-05-10T08:45:23.000Z
- https://blog.ihoey.com/posts/javascript/2016-07-22-javascript-Function.html
+ https://blog.ihoey.com/posts/Hexo/2015-08-28-hello-world.html
2018-05-10T08:45:23.000Z
@@ -135,14 +135,14 @@
- https://blog.ihoey.com/posts/javascript/2016-11-20-javascript-jquery-part3.html
+ https://blog.ihoey.com/posts/javascript/2016-11-21-javascript-jquery-part4.html
2018-05-10T08:45:23.000Z
- https://blog.ihoey.com/posts/javascript/2016-11-23-javascript-jquery-part5.html
+ https://blog.ihoey.com/posts/javascript/2016-11-20-javascript-jquery-part3.html
2018-05-10T08:45:23.000Z
@@ -156,28 +156,28 @@
- https://blog.ihoey.com/posts/javascript/2016-06-04-javascript-prototype.html
+ https://blog.ihoey.com/posts/javascript/2016-11-23-javascript-jquery-part5.html
2018-05-10T08:45:23.000Z
- https://blog.ihoey.com/posts/javascript/2016-07-09-javascript-prototype-chain.html
+ https://blog.ihoey.com/posts/javascript/2016-11-24-javascript-jquery-part6.html
2018-05-10T08:45:23.000Z
- https://blog.ihoey.com/posts/javascript/2016-11-21-javascript-jquery-part4.html
+ https://blog.ihoey.com/posts/javascript/2016-07-09-javascript-prototype-chain.html
2018-05-10T08:45:23.000Z
- https://blog.ihoey.com/posts/javascript/2016-11-24-javascript-jquery-part6.html
+ https://blog.ihoey.com/posts/javascript/2016-06-04-javascript-prototype.html
2018-05-10T08:45:23.000Z
diff --git a/tags/Android/index.html b/tags/Android/index.html
index 2638783ae..c9a94f0b6 100644
--- a/tags/Android/index.html
+++ b/tags/Android/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/Canvas/index.html b/tags/Canvas/index.html
index 56c747e9d..3c9b36a17 100644
--- a/tags/Canvas/index.html
+++ b/tags/Canvas/index.html
@@ -1021,7 +1021,7 @@
-
+
diff --git a/tags/Cron/index.html b/tags/Cron/index.html
index f20bd50ac..bb80afa9e 100644
--- a/tags/Cron/index.html
+++ b/tags/Cron/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/Function/index.html b/tags/Function/index.html
index c4fb75b52..ece6a8681 100644
--- a/tags/Function/index.html
+++ b/tags/Function/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/Git/index.html b/tags/Git/index.html
index ea8428a97..eac142fe6 100644
--- a/tags/Git/index.html
+++ b/tags/Git/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/HTML5/index.html b/tags/HTML5/index.html
index 56b3db85b..4de60b170 100644
--- a/tags/HTML5/index.html
+++ b/tags/HTML5/index.html
@@ -1021,7 +1021,7 @@
-
+
diff --git a/tags/JQuery/index.html b/tags/JQuery/index.html
index fb7ffd183..ede7aa6e7 100644
--- a/tags/JQuery/index.html
+++ b/tags/JQuery/index.html
@@ -1133,7 +1133,7 @@
-
+
diff --git "a/tags/Js\346\241\206\346\236\266/index.html" "b/tags/Js\346\241\206\346\236\266/index.html"
index 6169d09a2..43bb8fc00 100644
--- "a/tags/Js\346\241\206\346\236\266/index.html"
+++ "b/tags/Js\346\241\206\346\236\266/index.html"
@@ -1133,7 +1133,7 @@
-
+
diff --git a/tags/Linux/index.html b/tags/Linux/index.html
index bda59abe5..9c4a9ca98 100644
--- a/tags/Linux/index.html
+++ b/tags/Linux/index.html
@@ -1077,7 +1077,7 @@
-
+
diff --git a/tags/Mac-OS/index.html b/tags/Mac-OS/index.html
index dbd58b2da..d8212015c 100644
--- a/tags/Mac-OS/index.html
+++ b/tags/Mac-OS/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/Mac/index.html b/tags/Mac/index.html
index 2eb378611..8f97bc34e 100644
--- a/tags/Mac/index.html
+++ b/tags/Mac/index.html
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/Markdown\350\257\255\346\263\225\350\247\204\350\214\203/index.html" "b/tags/Markdown\350\257\255\346\263\225\350\247\204\350\214\203/index.html"
index ada7d9987..9ba7c265e 100644
--- "a/tags/Markdown\350\257\255\346\263\225\350\247\204\350\214\203/index.html"
+++ "b/tags/Markdown\350\257\255\346\263\225\350\247\204\350\214\203/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/MongoDB/index.html b/tags/MongoDB/index.html
index 901d078cc..a73579888 100644
--- a/tags/MongoDB/index.html
+++ b/tags/MongoDB/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/MySQL/index.html b/tags/MySQL/index.html
index 0fb8ca8a4..54beb1878 100644
--- a/tags/MySQL/index.html
+++ b/tags/MySQL/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/NoSQL/index.html b/tags/NoSQL/index.html
index a1ea1e7f0..ea0145c18 100644
--- a/tags/NoSQL/index.html
+++ b/tags/NoSQL/index.html
@@ -1021,7 +1021,7 @@
-
+
diff --git a/tags/Node/index.html b/tags/Node/index.html
index 82a0ab3a0..f5cd3ab3f 100644
--- a/tags/Node/index.html
+++ b/tags/Node/index.html
@@ -1105,7 +1105,7 @@
-
+
diff --git a/tags/NodeJs/index.html b/tags/NodeJs/index.html
index b2e1e1d73..8cb56b136 100644
--- a/tags/NodeJs/index.html
+++ b/tags/NodeJs/index.html
@@ -1049,7 +1049,7 @@
-
+
diff --git a/tags/PWA/index.html b/tags/PWA/index.html
index 7a2bc3f79..d6c99b309 100644
--- a/tags/PWA/index.html
+++ b/tags/PWA/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/Ubuntu/index.html b/tags/Ubuntu/index.html
index 535b62bbf..e0031dc08 100644
--- a/tags/Ubuntu/index.html
+++ b/tags/Ubuntu/index.html
@@ -1077,7 +1077,7 @@
-
+
diff --git a/tags/adb/index.html b/tags/adb/index.html
index 20a9ca449..134aae49f 100644
--- a/tags/adb/index.html
+++ b/tags/adb/index.html
@@ -993,7 +993,7 @@
-
+
diff --git "a/tags/adb\345\221\275\344\273\244/index.html" "b/tags/adb\345\221\275\344\273\244/index.html"
index b372b6877..12e957b28 100644
--- "a/tags/adb\345\221\275\344\273\244/index.html"
+++ "b/tags/adb\345\221\275\344\273\244/index.html"
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/comment/index.html b/tags/comment/index.html
index 11d8fd862..6adc032be 100644
--- a/tags/comment/index.html
+++ b/tags/comment/index.html
@@ -1021,7 +1021,7 @@
-
+
diff --git a/tags/hexo/index.html b/tags/hexo/index.html
index b841d70e6..31dbfb0f4 100644
--- a/tags/hexo/index.html
+++ b/tags/hexo/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/houyi1121/index.html b/tags/houyi1121/index.html
index 9f321a813..34a2cbb3a 100644
--- a/tags/houyi1121/index.html
+++ b/tags/houyi1121/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/index.html b/tags/index.html
index 00611cd40..37d44aa24 100644
--- a/tags/index.html
+++ b/tags/index.html
@@ -1186,7 +1186,7 @@ 标签
-
+
diff --git a/tags/javascript/index.html b/tags/javascript/index.html
index db64d48f4..525a4f295 100644
--- a/tags/javascript/index.html
+++ b/tags/javascript/index.html
@@ -1221,7 +1221,7 @@
-
+
diff --git a/tags/javascript/page/2/index.html b/tags/javascript/page/2/index.html
index b5de045e1..2166118a4 100644
--- a/tags/javascript/page/2/index.html
+++ b/tags/javascript/page/2/index.html
@@ -1053,7 +1053,7 @@
-
+
diff --git "a/tags/js\346\236\204\351\200\240\345\207\275\346\225\260/index.html" "b/tags/js\346\236\204\351\200\240\345\207\275\346\225\260/index.html"
index d0934a92e..e1f8af381 100644
--- "a/tags/js\346\236\204\351\200\240\345\207\275\346\225\260/index.html"
+++ "b/tags/js\346\236\204\351\200\240\345\207\275\346\225\260/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/js\351\235\242\345\220\221\345\257\271\350\261\241/index.html" "b/tags/js\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
index 81a03b48a..91e0f5a60 100644
--- "a/tags/js\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
+++ "b/tags/js\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/npm/index.html b/tags/npm/index.html
index 3890001a4..0f9d4dc82 100644
--- a/tags/npm/index.html
+++ b/tags/npm/index.html
@@ -1021,7 +1021,7 @@
-
+
diff --git a/tags/pm2/index.html b/tags/pm2/index.html
index 82c532890..ad31538f1 100644
--- a/tags/pm2/index.html
+++ b/tags/pm2/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/shadowsocks/index.html b/tags/shadowsocks/index.html
index cfff30740..b2a6ee768 100644
--- a/tags/shadowsocks/index.html
+++ b/tags/shadowsocks/index.html
@@ -965,7 +965,7 @@
-
+
diff --git a/tags/shell/index.html b/tags/shell/index.html
index 01e9f01ca..12d786834 100644
--- a/tags/shell/index.html
+++ b/tags/shell/index.html
@@ -1105,7 +1105,7 @@
-
+
diff --git a/tags/tools/index.html b/tags/tools/index.html
index b48a2dde3..684bad910 100644
--- a/tags/tools/index.html
+++ b/tags/tools/index.html
@@ -993,7 +993,7 @@
-
+
diff --git a/tags/yarn/index.html b/tags/yarn/index.html
index a86cec360..d41c38461 100644
--- a/tags/yarn/index.html
+++ b/tags/yarn/index.html
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\344\274\252\345\205\203\347\264\240/index.html" "b/tags/\344\274\252\345\205\203\347\264\240/index.html"
index 73a727380..160e312da 100644
--- "a/tags/\344\274\252\345\205\203\347\264\240/index.html"
+++ "b/tags/\344\274\252\345\205\203\347\264\240/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\344\274\252\347\261\273/index.html" "b/tags/\344\274\252\347\261\273/index.html"
index 5e1cf9758..70aca1982 100644
--- "a/tags/\344\274\252\347\261\273/index.html"
+++ "b/tags/\344\274\252\347\261\273/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\345\216\237\345\236\213/index.html" "b/tags/\345\216\237\345\236\213/index.html"
index 80b4ea47b..d63c258f1 100644
--- "a/tags/\345\216\237\345\236\213/index.html"
+++ "b/tags/\345\216\237\345\236\213/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\345\216\237\345\236\213\347\232\204\345\237\272\346\234\254\346\246\202\345\277\265/index.html" "b/tags/\345\216\237\345\236\213\347\232\204\345\237\272\346\234\254\346\246\202\345\277\265/index.html"
index bd8c39842..c3f2f50ca 100644
--- "a/tags/\345\216\237\345\236\213\347\232\204\345\237\272\346\234\254\346\246\202\345\277\265/index.html"
+++ "b/tags/\345\216\237\345\236\213\347\232\204\345\237\272\346\234\254\346\246\202\345\277\265/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\345\216\237\345\236\213\351\223\276/index.html" "b/tags/\345\216\237\345\236\213\351\223\276/index.html"
index dcf484bae..58aa13a7f 100644
--- "a/tags/\345\216\237\345\236\213\351\223\276/index.html"
+++ "b/tags/\345\216\237\345\236\213\351\223\276/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\345\216\237\347\224\237Js/index.html" "b/tags/\345\216\237\347\224\237Js/index.html"
index 3078c3a50..8611992ee 100644
--- "a/tags/\345\216\237\347\224\237Js/index.html"
+++ "b/tags/\345\216\237\347\224\237Js/index.html"
@@ -1161,7 +1161,7 @@
-
+
diff --git "a/tags/\346\227\245\345\270\270\346\260\264\346\226\207/index.html" "b/tags/\346\227\245\345\270\270\346\260\264\346\226\207/index.html"
index b5f8e91a2..827113fb7 100644
--- "a/tags/\346\227\245\345\270\270\346\260\264\346\226\207/index.html"
+++ "b/tags/\346\227\245\345\270\270\346\260\264\346\226\207/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\346\242\246\351\255\207/index.html" "b/tags/\346\242\246\351\255\207/index.html"
index 03767217d..55244c2bc 100644
--- "a/tags/\346\242\246\351\255\207/index.html"
+++ "b/tags/\346\242\246\351\255\207/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\346\242\246\351\255\207\345\260\217\346\240\210/index.html" "b/tags/\346\242\246\351\255\207\345\260\217\346\240\210/index.html"
index 4f7cf5c8c..663ad0dcc 100644
--- "a/tags/\346\242\246\351\255\207\345\260\217\346\240\210/index.html"
+++ "b/tags/\346\242\246\351\255\207\345\260\217\346\240\210/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\347\224\273\345\270\203/index.html" "b/tags/\347\224\273\345\270\203/index.html"
index 2f512566d..dfa14812b 100644
--- "a/tags/\347\224\273\345\270\203/index.html"
+++ "b/tags/\347\224\273\345\270\203/index.html"
@@ -1021,7 +1021,7 @@
-
+
diff --git "a/tags/\347\247\221\345\255\246\344\270\212\347\275\221/index.html" "b/tags/\347\247\221\345\255\246\344\270\212\347\275\221/index.html"
index 0301b4a98..d5124fb5d 100644
--- "a/tags/\347\247\221\345\255\246\344\270\212\347\275\221/index.html"
+++ "b/tags/\347\247\221\345\255\246\344\270\212\347\275\221/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\347\273\247\346\211\277/index.html" "b/tags/\347\273\247\346\211\277/index.html"
index d79e1c976..089616855 100644
--- "a/tags/\347\273\247\346\211\277/index.html"
+++ "b/tags/\347\273\247\346\211\277/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\347\273\247\346\211\277\347\232\204\345\256\236\347\216\260\346\226\271\345\274\217/index.html" "b/tags/\347\273\247\346\211\277\347\232\204\345\256\236\347\216\260\346\226\271\345\274\217/index.html"
index 494999636..a86dee445 100644
--- "a/tags/\347\273\247\346\211\277\347\232\204\345\256\236\347\216\260\346\226\271\345\274\217/index.html"
+++ "b/tags/\347\273\247\346\211\277\347\232\204\345\256\236\347\216\260\346\226\271\345\274\217/index.html"
@@ -965,7 +965,7 @@
-
+
diff --git "a/tags/\351\235\242\350\257\225/index.html" "b/tags/\351\235\242\350\257\225/index.html"
index 6fe1d8bfe..37e0664ee 100644
--- "a/tags/\351\235\242\350\257\225/index.html"
+++ "b/tags/\351\235\242\350\257\225/index.html"
@@ -965,7 +965,7 @@
-
+