diff --git a/index.html b/index.html
index 19693508..185af3b2 100644
--- a/index.html
+++ b/index.html
@@ -1,110 +1,118 @@
+
+
+ docsify
+
+
+
+
+
+
+
+
+
- #carbonads {
- box-shadow: none !important;
- width: auto !important;
- }
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
+ plugins: [
+ DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'),
+ function(hook, vm) {
+ hook.beforeEach(function(html) {
+ if (/githubusercontent\.com/.test(vm.route.file)) {
+ url = vm.route.file
+ .replace('raw.githubusercontent.com', 'github.com')
+ .replace(/\/master/, '/blob/master');
+ } else if (/jsdelivr\.net/.test(vm.route.file)) {
+ url = vm.route.file
+ .replace('cdn.jsdelivr.net/gh', 'github.com')
+ .replace('@master', '/blob/master');
+ } else {
+ url =
+ 'https://github.com/docsifyjs/docsify/blob/master/docs/' +
+ vm.route.file;
+ }
+ var editHtml = '[:memo: Edit Document](' + url + ')\n';
+ return (
+ editHtml +
+ html +
+ '\n\n----\n\n' +
+ 'Powered by docsify'
+ );
+ });
+ },
+ ],
+ };
+
+
+
+
+
+
+
+
+
+