.
->>>>>>> c6506886ed272a4b1f00e03fff3f20a2492eca4a
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/README.md b/node_modules/gitbook-plugin-anchor-navigation-ex/README.md
deleted file mode 100644
index 77e8e6f..0000000
--- a/node_modules/gitbook-plugin-anchor-navigation-ex/README.md
+++ /dev/null
@@ -1,72 +0,0 @@
-Math integration with GitBook
-==============
-
-### en
-Add TOC to the side of the side of the suspension navigation. Optional: sort and rewrite the page title
- * 1. based on https://github.com/zhangzq/gitbook-plugin-navigator
- * 2. based on https://github.com/yaneryou/gitbook-plugin-anchor-navigation
- * 3. bug Restore 2 invalid does not display the bug
- * 4. The plug-in dependency Plug in,https://plugins.gitbook.com/plugin/anchors @Latest: 0.7.1+ so the anchors plug-in must be before the plug-in
-
-
-### cn
-添加toc到侧边悬浮导航。可选:排序并重写页面标题.
-本插件修改源插件的功能:综合修复了原有的bug和兼容性,本插件没有业务逻辑,在编译时被调用
- * 1. 基于 https://github.com/zhangzq/gitbook-plugin-navigator
- * 2. 基于 https://github.com/yaneryou/gitbook-plugin-anchor-navigation
- * 3. 修复 bug :gitbook-plugin-anchor-navigation 不正常显示
- * 4. 该插件依赖 https://plugins.gitbook.com/plugin/anchors @Latest: 0.7.1+ 插件,所以 anchors 插件的必须在本插件之前被安装到book.json中
-
-### Sample
- https://zq99299.gitbooks.io/gitbook-guide/content/chapter/plugin.html
-
- ![image](https://raw.githubusercontent.com/zq99299/gitbook-plugin-anchor-navigation-ex/master/doc/images/gitbook-plugin-anchor-navigation-ex-demo2.jpg)
- ![image](https://raw.githubusercontent.com/zq99299/gitbook-plugin-anchor-navigation-ex/master/doc/images/gitbook-plugin-anchor-navigation-ex-demo.jpg)
-
-
-
-### How to use it?
-
-Add it to your `book.json` configuration:
-
-```
-{
- "plugins": [
- "anchors",
- "anchor-navigation-ex"
- ]
-}
-```
-
-Install your plugins using:
-
-```
-$ gitbook install ./
-```
-
-### Configuration
-
-You can force the use of svg pre-processed by adding to your book.json:
-
-```
-{
- "pluginsConfig": {
- "anchor-navigation-ex":{
- "isRewritePageTitle":true
- }
- }
-}
-```
-
-
-isRewritePageTitle :
-* en : Do you want to overwrite the page title, true: will overwrite the anchors plug-in anchor effect
-* cn : 是否重写页面标题,true:将会覆盖anchors插件锚点效果
-
-## or Install locally
-
-```
-$ npm install gitbook-plugin-anchor-navigation-ex --save
-```
-
->open npm : https://www.npmjs.com/package/gitbook-plugin-anchor-navigation-ex
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo.jpg b/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo.jpg
deleted file mode 100644
index 02e73bc..0000000
Binary files a/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo.jpg and /dev/null differ
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo2.jpg b/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo2.jpg
deleted file mode 100644
index 972d940..0000000
Binary files a/node_modules/gitbook-plugin-anchor-navigation-ex/doc/images/gitbook-plugin-anchor-navigation-ex-demo2.jpg and /dev/null differ
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/index.js b/node_modules/gitbook-plugin-anchor-navigation-ex/index.js
deleted file mode 100644
index a99ab64..0000000
--- a/node_modules/gitbook-plugin-anchor-navigation-ex/index.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/**
- * 本插件修改源插件的功能:综合修复了原有的bug和兼容性
- * 1. 基于 https://github.com/zhangzq/gitbook-plugin-navigator
- * 2. 基于 https://github.com/yaneryou/gitbook-plugin-anchor-navigation
- * 3. 修复 bug :gitbook-plugin-anchor-navigation 不正常显示
- * 4. 该插件依赖 https://plugins.gitbook.com/plugin/anchors 插件,所以 anchors 插件的必须在本插件之前
- */
-/**
- * en
- * 1. based on https://github.com/zhangzq/gitbook-plugin-navigator
- * 2. based on https://github.com/yaneryou/gitbook-plugin-anchor-navigation
- * 3. bug Restore 2 invalid does not display the bug
- * 4. The plug-in dependency Plug in,https://plugins.gitbook.com/plugin/anchors so the anchors plug-in must be before the plug-in
- */
-var cheerio = require('cheerio');
-
-function get_id(text) {
- return text.replace(/[,;. &%+*\/]/g, "_");
-}
-
-
-module.exports = {
- book: {
- assets: ".",
- css: ["plugin.css"]
- },
- hooks: {
- "page": function (section) {
- const defaultOption = {
- //Do you want to overwrite the page title, true: will overwrite the anchors plug-in anchor effect
- //是否重写页面标题,true:将会覆盖anchors插件锚点效果
- isRewritePageTitle:true
- }
- /**
- * [configOption: config option]
- * @type {Object}
- */
- var configOption = this.config.get('pluginsConfig')['anchor-navigation-ex'];
- if (configOption) {
- for (var item in defaultOption) {
- if (item in configOption) {
- defaultOption[item] = configOption[item];
- }
- }
- }
-
- var isRewritePageTitle = defaultOption.isRewritePageTitle;
- var $ = cheerio.load(section.content);
-
- var toc = [];
- var title_id = "";
- var title = "";
- var h1 = 0, h2 = 0, h3 = 0;
- $(':header').each(function (i, elem) {
- var header = $(elem);
- var id = header.attr('id');
-
- if (id) {
- switch (elem.tagName) {
- case "h1":
- toc.push({
- name: header.text(),
- url: id,
- children: []
- });
- if(isRewritePageTitle){
- h1 += 1;
- h2 = 0, h3 = 0;
- header.text(h1 + ". " + header.text());
- }
- break;
- case "h2":
- toc[toc.length - 1].children.push({
- name: header.text(),
- url: id,
- children: []
- });
- if(isRewritePageTitle) {
- h2 += 1;
- h3 = 0;
- header.text(h1 + "." + h2 + ". " + header.text());
- }
- break;
- case "h3":
- toc[toc.length - 1].children[toc[toc.length - 1].children.length - 1].children.push({
- name: header.text(),
- url: id,
- children: []
- });
- if(isRewritePageTitle) {
- h3 += 1;
- header.text(h1 + "." + h2 + "." + h3 + ". " + header.text());
- }
- break;
- default:
- break;
- }
- }
- });
- if (toc.length == 0) {
- section.content = $.html();
- return section;
- }
-
- var html = "";
-
- section.content = $.html() + html;
-
- return section;
- }
- }
-};
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/package.json b/node_modules/gitbook-plugin-anchor-navigation-ex/package.json
deleted file mode 100644
index a942452..0000000
--- a/node_modules/gitbook-plugin-anchor-navigation-ex/package.json
+++ /dev/null
@@ -1,103 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-anchor-navigation-ex",
- "raw": "gitbook-plugin-anchor-navigation-ex@0.0.8",
- "rawSpec": "0.0.8",
- "scope": null,
- "spec": "0.0.8",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-anchor-navigation-ex@0.0.8",
- "_id": "gitbook-plugin-anchor-navigation-ex@0.0.8",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-anchor-navigation-ex",
- "_nodeVersion": "4.4.4",
- "_npmOperationalInternal": {
- "host": "packages-18-east.internal.npmjs.com",
- "tmp": "tmp/gitbook-plugin-anchor-navigation-ex-0.0.8.tgz_1482665395351_0.7471124383155257"
- },
- "_npmUser": {
- "email": "99299684@qq.com",
- "name": "zhuqiang"
- },
- "_npmVersion": "2.15.1",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-anchor-navigation-ex",
- "raw": "gitbook-plugin-anchor-navigation-ex@0.0.8",
- "rawSpec": "0.0.8",
- "scope": null,
- "spec": "0.0.8",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-anchor-navigation-ex/-/gitbook-plugin-anchor-navigation-ex-0.0.8.tgz",
- "_shasum": "1c87cfb855e54e175ce9d01de2455b61cb13a870",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-anchor-navigation-ex@0.0.8",
- "_where": "D:\\gitbooktest",
- "author": {
- "name": "zhuqiang"
- },
- "bugs": {
- "url": "https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex/issues"
- },
- "dependencies": {
- "cheerio": "*"
- },
- "description": "Add TOC to the side of the side of the suspension navigation. Optional: Rewrite the page title and add the number",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "1c87cfb855e54e175ce9d01de2455b61cb13a870",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-anchor-navigation-ex/-/gitbook-plugin-anchor-navigation-ex-0.0.8.tgz"
- },
- "engines": {
- "gitbook": "*"
- },
- "gitHead": "90ea08f27172df6554a071420c1777d2acabf6c8",
- "gitbook": {
- "properties": {
- "isRewritePageTitle": {
- "default": true,
- "title": "Do you want to overwrite the page title, true: will overwrite the anchors plug-in anchor effect",
- "type": "boolean"
- }
- }
- },
- "homepage": "https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex#readme",
- "keywords": [
- "gitbook",
- "plugin",
- "ftp",
- "anchor-navigation-ex",
- "anchor-navigation"
- ],
- "license": "GPL-3.0",
- "main": "index.js",
- "maintainers": [
- {
- "email": "99299684@qq.com",
- "name": "zhuqiang"
- }
- ],
- "name": "gitbook-plugin-anchor-navigation-ex",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex.git"
- },
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "version": "0.0.8"
-}
diff --git a/node_modules/gitbook-plugin-anchor-navigation-ex/plugin.css b/node_modules/gitbook-plugin-anchor-navigation-ex/plugin.css
deleted file mode 100644
index a8a735a..0000000
--- a/node_modules/gitbook-plugin-anchor-navigation-ex/plugin.css
+++ /dev/null
@@ -1,41 +0,0 @@
-#anchors-navbar{
- border: 1px solid #ccc;
- box-shadow: 5px 5px 2px #ccc;
- padding: 5px 10px;
- position: fixed;
- background-color: #fff;
- right: 50px;
- top: 68px;
- font-size: 12px;
- white-space: nowrap;
- z-index: 999;
- cursor: pointer;
- text-align: right;
- max-height: 70%;
- overflow-y: auto;
- overflow-x: hidden;
-}
-
-#anchors-navbar ul{
- display: none;
- text-align: left;
- padding-right: 10px;
-}
-
-#anchors-navbar:hover ul{
- display: block;
-}
-
-#goTop{
- position: fixed;
- right: 50px;
- bottom: 68px;
- border: 1px solid #ccc;
- z-index: 999;
- cursor: pointer;
- font-size: 12px;
- padding: 5px 10px;
- box-shadow: 5px 5px 2px #ccc;
- background-color: #fff;
- color: #333;
-}
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-anchors/.npmignore b/node_modules/gitbook-plugin-anchors/.npmignore
deleted file mode 100644
index da23d0d..0000000
--- a/node_modules/gitbook-plugin-anchors/.npmignore
+++ /dev/null
@@ -1,25 +0,0 @@
-# Logs
-logs
-*.log
-
-# Runtime data
-pids
-*.pid
-*.seed
-
-# Directory for instrumented libs generated by jscoverage/JSCover
-lib-cov
-
-# Coverage directory used by tools like istanbul
-coverage
-
-# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-# Compiled binary addons (http://nodejs.org/api/addons.html)
-build/Release
-
-# Dependency directory
-# Deployed apps should consider commenting this line out:
-# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
-node_modules
diff --git a/node_modules/gitbook-plugin-anchors/LICENSE b/node_modules/gitbook-plugin-anchors/LICENSE
deleted file mode 100644
index ad410e1..0000000
--- a/node_modules/gitbook-plugin-anchors/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
-Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-anchors/README.md b/node_modules/gitbook-plugin-anchors/README.md
deleted file mode 100644
index f86fdaa..0000000
--- a/node_modules/gitbook-plugin-anchors/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-Gitbook Anchors Plugin
-==============
-
-Add Github style heading anchors to your book.
-
-![](https://cloud.githubusercontent.com/assets/2666107/3465465/9fc9a502-0266-11e4-80ca-09a1dad1473e.png)
-
-Add the plugin to your `book.json`:
-
-```
-{
- "plugins" : [ "anchors" ]
-}
-```
diff --git a/node_modules/gitbook-plugin-anchors/assets/plugin.css b/node_modules/gitbook-plugin-anchors/assets/plugin.css
deleted file mode 100644
index adf3e9e..0000000
--- a/node_modules/gitbook-plugin-anchors/assets/plugin.css
+++ /dev/null
@@ -1,30 +0,0 @@
-
-a.plugin-anchor {
- color: inherit !important;
- display: none;
- margin-left: -30px;
- padding-left: 40px;
- cursor: pointer;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
-}
-
-a.plugin-anchor i {
- margin-left: -30px;
- font-size: 15px !important;
-}
-
-h1, h2, h3, h4, h5, h6 {
- position: relative;
-}
-
-h1:hover a.plugin-anchor, h2:hover a.plugin-anchor, h3:hover a.plugin-anchor,
-h4:hover a.plugin-anchor, h5:hover a.plugin-anchor, h6:hover a.plugin-anchor {
- display: inline-block;
-}
-
-.book .book-body .page-wrapper .page-inner section.normal {
- overflow: visible;
-}
diff --git a/node_modules/gitbook-plugin-anchors/index.js b/node_modules/gitbook-plugin-anchors/index.js
deleted file mode 100644
index 064a476..0000000
--- a/node_modules/gitbook-plugin-anchors/index.js
+++ /dev/null
@@ -1,33 +0,0 @@
-var cheerio = require('cheerio');
-var slug = require('github-slugid');
-
-// insert anchor link into section
-function insertAnchors(content) {
- var $ = cheerio.load(content);
- $(':header').each(function(i, elem) {
- var header = $(elem);
- var id = header.attr("id");
- if (!id) {
- id = slug(header.text());
- header.attr("id", id);
- }
- header.prepend(''
- + ''
- + '');
- });
- return $.html();
-}
-
-module.exports = {
- book: {
- assets: "./assets",
- css: [ "plugin.css" ]
- },
- hooks: {
- "page": function(page) {
- page.content = insertAnchors(page.content);
- return page;
- }
- }
-};
diff --git a/node_modules/gitbook-plugin-anchors/package.json b/node_modules/gitbook-plugin-anchors/package.json
deleted file mode 100644
index 6a79c25..0000000
--- a/node_modules/gitbook-plugin-anchors/package.json
+++ /dev/null
@@ -1,87 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-anchors",
- "raw": "gitbook-plugin-anchors@0.7.1",
- "rawSpec": "0.7.1",
- "scope": null,
- "spec": "0.7.1",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-anchors@0.7.1",
- "_id": "gitbook-plugin-anchors@0.7.1",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-anchors",
- "_nodeVersion": "4.3.0",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/gitbook-plugin-anchors-0.7.1.tgz_1468952846160_0.08467934839427471"
- },
- "_npmUser": {
- "email": "bo.marchman@gmail.com",
- "name": "rlmv"
- },
- "_npmVersion": "2.14.12",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-anchors",
- "raw": "gitbook-plugin-anchors@0.7.1",
- "rawSpec": "0.7.1",
- "scope": null,
- "spec": "0.7.1",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-anchors/-/gitbook-plugin-anchors-0.7.1.tgz",
- "_shasum": "8f585b99ab1a602ea714342258c957238e36ec82",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-anchors@0.7.1",
- "_where": "D:\\gitbooktest",
- "author": {
- "email": "bo.marchman@gmail.com",
- "name": "Bo Marchman"
- },
- "bugs": {
- "url": "https://github.com/rlmv/gitbook-plugin-anchors/issues"
- },
- "dependencies": {
- "cheerio": "*",
- "github-slugid": "1.0.1"
- },
- "description": "Add Github style heading anchors to your Gitbook",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "8f585b99ab1a602ea714342258c957238e36ec82",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-anchors/-/gitbook-plugin-anchors-0.7.1.tgz"
- },
- "engines": {
- "gitbook": ">=2.5.0"
- },
- "gitHead": "ba139e94705b71d7c752015e6e7407aaaf07528f",
- "homepage": "https://github.com/rlmv/gitbook-plugin-anchors",
- "license": "Apache-2.0",
- "main": "index.js",
- "maintainers": [
- {
- "email": "bo.marchman@gmail.com",
- "name": "rlmv"
- }
- ],
- "name": "gitbook-plugin-anchors",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/rlmv/gitbook-plugin-anchors.git"
- },
- "scripts": {},
- "version": "0.7.1"
-}
diff --git a/node_modules/gitbook-plugin-codeblock-filename/LICENSE b/node_modules/gitbook-plugin-codeblock-filename/LICENSE
deleted file mode 100644
index 125daab..0000000
--- a/node_modules/gitbook-plugin-codeblock-filename/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 Fukuo Kadota
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
diff --git a/node_modules/gitbook-plugin-codeblock-filename/README.md b/node_modules/gitbook-plugin-codeblock-filename/README.md
deleted file mode 100644
index dc1bd2d..0000000
--- a/node_modules/gitbook-plugin-codeblock-filename/README.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# Gitbook Plugin: Add Filename to Codeblock
-
-This is a gitbook plugin.
-
-Add filename to codeblock.
-
-## Usage
-
-You can install this plugin via NPM and save it to `package.json`.
-
-```
-$ npm install gitbook-plugin-codeblock-filename --save
-```
-
-Add the plugin to your `book.json`:
-
-```
-{
- plugins: [ "codeblock-filename" ]
-}
-```
-
-Then, you need only to insert before codeblock the code below.
-
-
-!FILENAME filename
-```
-codeblock
-```
-
-
-You can also write below like qiita,
-
-
-```js:test.js
-codeblock
-```
-
-
-Code format is not necessary. So you can exclude `js`.
-
-You can also write below,
-
-
-```:test.js
-codeblock
-```
-
-
-Then, you can see the filename on top of the codeblock.
-
-## Example
-
-write this code ↓
-
-
-!FILENAME test.js
-```
-var a = 10;
-a = a + 1;
-
-console.log(a);
-```
-
-
-then result is ↓
-
-![screenshot](screenshot.png)
diff --git a/node_modules/gitbook-plugin-codeblock-filename/book/block.css b/node_modules/gitbook-plugin-codeblock-filename/book/block.css
deleted file mode 100644
index 9aea6b5..0000000
--- a/node_modules/gitbook-plugin-codeblock-filename/book/block.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.code-filename{
- background-color: rgba(0,0,0,0.07);
- display: inline-block;
- padding: 2px 8px;
- font-size: small;
- line-height: inherit;
- margin-bottom: 0px !important;
-}
diff --git a/node_modules/gitbook-plugin-codeblock-filename/index.js b/node_modules/gitbook-plugin-codeblock-filename/index.js
deleted file mode 100644
index 00ac99f..0000000
--- a/node_modules/gitbook-plugin-codeblock-filename/index.js
+++ /dev/null
@@ -1,40 +0,0 @@
-module.exports = {
- book: { assets: "./book", css: [ "block.css" ] },
- hooks: {
- // Qiita記法を独自フォーマットに変換
- "page:before": function(page) {
- var regixAll = /([^\S]```.*)(:(.+))[\s\S]+?```/g;
- var regix = /([^\S]```.*)(:(.+))[\s\S]+?```/;
- var matchAll = page.content.match(regixAll);
-
- for(var i = 0; matchAll && i < matchAll.length; i++){
- var match = matchAll[i].match(regix);
- var input = match.input.replace(match[2], "");
- var replace = input.replace(match[1], "\n\n!FILENAME " + match[3] + match[1]);
- page.content = page.content.replace(match.input, replace);
- }
-
- return page;
- },
-
- // 独自フォーマットからfilenameタグを生成
- "page": function(page) {
- var regixAll = /(!FILENAME\s+([\S].+)<\/p>)\s*
[\s\S]*?(<\/pre>)/g;
- var regix = /(!FILENAME\s+([\S].+)<\/p>)\s*
[\s\S]*?(<\/pre>)/;
- var replacer = function(filename){
- return '';
- }
-
- var tagAll = page.content.match(regixAll);
-
- for(var j = 0; tagAll && j < tagAll.length; j++){
- var tag = page.content.match(regix);
- var replace = tag[0].replace(tag[1], replacer(tag[2]));
- page.content = page.content.replace(tag[0], replace);
- }
-
- return page;
- }
- }
-};
-
diff --git a/node_modules/gitbook-plugin-codeblock-filename/package.json b/node_modules/gitbook-plugin-codeblock-filename/package.json
deleted file mode 100644
index 48e0dec..0000000
--- a/node_modules/gitbook-plugin-codeblock-filename/package.json
+++ /dev/null
@@ -1,83 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-codeblock-filename",
- "raw": "gitbook-plugin-codeblock-filename@0.0.9",
- "rawSpec": "0.0.9",
- "scope": null,
- "spec": "0.0.9",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-codeblock-filename@0.0.9",
- "_id": "gitbook-plugin-codeblock-filename@0.0.9",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-codeblock-filename",
- "_nodeVersion": "7.2.0",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/gitbook-plugin-codeblock-filename-0.0.9.tgz_1480824020490_0.47751294868066907"
- },
- "_npmUser": {
- "email": "app.fk91@gmail.com",
- "name": "fukuo"
- },
- "_npmVersion": "3.10.9",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-codeblock-filename",
- "raw": "gitbook-plugin-codeblock-filename@0.0.9",
- "rawSpec": "0.0.9",
- "scope": null,
- "spec": "0.0.9",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-codeblock-filename/-/gitbook-plugin-codeblock-filename-0.0.9.tgz",
- "_shasum": "87a9e33d89516b9219f3f6c5cd23c35d7c2cb471",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-codeblock-filename@0.0.9",
- "_where": "D:\\gitbooktest",
- "author": {
- "name": "fukuo"
- },
- "bugs": {
- "url": "https://github.com/litmon/gitbook-plugin-codeblock-filename/issues"
- },
- "dependencies": {},
- "description": "Add to Filename in Codeblock",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "87a9e33d89516b9219f3f6c5cd23c35d7c2cb471",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-codeblock-filename/-/gitbook-plugin-codeblock-filename-0.0.9.tgz"
- },
- "engines": {
- "gitbook": "*"
- },
- "gitHead": "35dbef32702cff8c71a3e38b76a494a93d1d9899",
- "homepage": "https://github.com/litmon/gitbook-plugin-codeblock-filename",
- "license": "MIT",
- "main": "index.js",
- "maintainers": [
- {
- "email": "app.fk91@gmail.com",
- "name": "fukuo"
- }
- ],
- "name": "gitbook-plugin-codeblock-filename",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/litmon/gitbook-plugin-codeblock-filename.git"
- },
- "scripts": {},
- "version": "0.0.9"
-}
diff --git a/node_modules/gitbook-plugin-codeblock-filename/screenshot.png b/node_modules/gitbook-plugin-codeblock-filename/screenshot.png
deleted file mode 100644
index 8abeb1b..0000000
Binary files a/node_modules/gitbook-plugin-codeblock-filename/screenshot.png and /dev/null differ
diff --git a/node_modules/gitbook-plugin-splitter/.npmignore b/node_modules/gitbook-plugin-splitter/.npmignore
deleted file mode 100644
index 5d23929..0000000
--- a/node_modules/gitbook-plugin-splitter/.npmignore
+++ /dev/null
@@ -1,92 +0,0 @@
-### https://raw.github.com/github/gitignore/a4ec7f03ca5ae0bf09fad42c0fb7d1e8346bcf25/Node.gitignore
-
-# Logs
-logs
-*.log
-
-# Runtime data
-pids
-*.pid
-*.seed
-
-# Directory for instrumented libs generated by jscoverage/JSCover
-lib-cov
-
-# Coverage directory used by tools like istanbul
-coverage
-
-# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-# node-waf configuration
-.lock-wscript
-
-# Compiled binary addons (http://nodejs.org/api/addons.html)
-build/Release
-
-# Dependency directory
-# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
-node_modules
-
-
-### https://raw.github.com/github/gitignore/a4ec7f03ca5ae0bf09fad42c0fb7d1e8346bcf25/Global/OSX.gitignore
-
-.DS_Store
-.AppleDouble
-.LSOverride
-
-# Icon must end with two \r
-Icon
-
-# Thumbnails
-._*
-
-# Files that might appear in the root of a volume
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-
-# Directories potentially created on remote AFP share
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
-
-
-### https://raw.github.com/github/gitignore/a4ec7f03ca5ae0bf09fad42c0fb7d1e8346bcf25/Global/Windows.gitignore
-
-# Windows image file caches
-Thumbs.db
-ehthumbs.db
-
-# Folder config file
-Desktop.ini
-
-# Recycle Bin used on file shares
-$RECYCLE.BIN/
-
-# Windows Installer files
-*.cab
-*.msi
-*.msm
-*.msp
-
-# Windows shortcuts
-*.lnk
-
-
-### https://raw.github.com/github/gitignore/a4ec7f03ca5ae0bf09fad42c0fb7d1e8346bcf25/Global/Linux.gitignore
-
-*~
-
-# KDE directory preferences
-.directory
-
-# Linux trash folder which might appear on any partition or disk
-.Trash-*
-
-
diff --git a/node_modules/gitbook-plugin-splitter/LICENSE.txt b/node_modules/gitbook-plugin-splitter/LICENSE.txt
deleted file mode 100644
index 0e17542..0000000
--- a/node_modules/gitbook-plugin-splitter/LICENSE.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015 yoshidax
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/node_modules/gitbook-plugin-splitter/README.md b/node_modules/gitbook-plugin-splitter/README.md
deleted file mode 100644
index 036b8e9..0000000
--- a/node_modules/gitbook-plugin-splitter/README.md
+++ /dev/null
@@ -1,45 +0,0 @@
-gitbook-plugin-splitter
-==============
-
-![splitter](https://raw.githubusercontent.com/yoshidax/gitbook-plugin-splitter/master/gitbook-splitter-demo.gif)
-
-this plug-in provides a vertical bar that divides the summary and main content.
-
-[![NPM](https://nodei.co/npm/gitbook-plugin-splitter.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/gitbook-plugin-splitter/)
-
-### other feature
-
-* It will save the position information of the splitter to sessionStorage.
-
-### How to use it?
-
-Add it to your `book.json` configuration:
-
-```json
-{
- "plugins": ["splitter"]
-}
-```
-
-Install your plugins using:
-
-```bash
-$ gitbook install
-```
-
-### change logs
-
-#### version 0.0.6 (2016-12-06T16:54:38)
-
-* fix: Fixed not to do anything when the width of the screen size was 600px or less (#6)
-* fix: changed the position of the bar position from "localStorage" to "sessiongStorage" (#10)
-
-#### version 0.0.6 (2015-11-06T16:54:38)
-
-* supported Gitbook v3
-
-#### version 0.0.5 (2015-11-06T16:54:38)
-
-* fixed don't work toggle button of summary view display from Gitbook V2.5.x
-
-This software is released under the MIT License, see LICENSE.txt.
diff --git a/node_modules/gitbook-plugin-splitter/book/splitter.css b/node_modules/gitbook-plugin-splitter/book/splitter.css
deleted file mode 100644
index 4e84720..0000000
--- a/node_modules/gitbook-plugin-splitter/book/splitter.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.divider-content-summary {
- position: absolute;
- top: 0;
- right: 0;
- height: 100%;
- width: 5px;
- display: table;
- cursor: col-resize;
- color: #ccc;
- -webkit-transition: color 350ms ease;
- -moz-transition: color 350ms ease;
- -o-transition: color 350ms ease;
- transition: color 350ms ease
-}
-.divider-content-summary:hover {
- color: #444;
-}
- .divider-content-summary__icon {
- display: table-cell;
- vertical-align: middle;
- text-align: center;
- }
diff --git a/node_modules/gitbook-plugin-splitter/book/splitter.js b/node_modules/gitbook-plugin-splitter/book/splitter.js
deleted file mode 100644
index 5034e5b..0000000
--- a/node_modules/gitbook-plugin-splitter/book/splitter.js
+++ /dev/null
@@ -1,128 +0,0 @@
-require(['gitbook', 'jQuery'], function (gitbook, $) {
-
- // MEMO:
- // Gitbook is calculated as "calc (100% - 60px)" in the horizontal width when the width of the screen size is 600px
- // or less.
- // In this case, since contradiction occurs in the implementation of this module, return.
- if($(window).width() <= 600) {
- return;
- }
-
- gitbook.events.bind('start', function () {
- });
-
- gitbook.events.bind('page.change', function () {
-
- var KEY_SPLIT_STATE = 'plugin_gitbook_split';
-
- var dividerWidth = null;
- var isDraggable = false;
- var dividerCenterOffsetLeft = null;
- var splitState = null;
- var grabPointWidth = null;
-
- var $body = $('body');
- var $book = $('.book');
- var $summary = $('.book-summary');
- var $bookBody = $('.book-body');
- var $divider = $('' +
- '
' +
- '' +
- '
' +
- '
');
-
- $summary.append($divider);
-
- dividerWidth = $divider.outerWidth();
- dividerCenterOffsetLeft = $divider.outerWidth() / 2;
-
- // restore split state from sessionStorage
- splitState = getSplitState();
- setSplitState(
- splitState.summaryWidth,
- splitState.summaryOffset,
- splitState.bookBodyOffset
- );
-
- setTimeout(function() {
- var isGreaterThanEqualGitbookV2_5 = !Boolean($('.toggle-summary').length);
-
- var $toggleSummary = isGreaterThanEqualGitbookV2_5
- ? $('.fa.fa-align-justify').parent() : $('.toggle-summary');
-
- $toggleSummary.on('click', function () {
-
- var summaryOffset = null;
- var bookBodyOffset = null;
-
- var isOpen = isGreaterThanEqualGitbookV2_5
- ? !gitbook.sidebar.isOpen() : $book.hasClass('with-summary');
-
- if (isOpen) {
- summaryOffset = -($summary.outerWidth());
- bookBodyOffset = 0;
- } else {
- summaryOffset = 0;
- bookBodyOffset = $summary.outerWidth();
- }
-
- setSplitState($summary.outerWidth(), summaryOffset, bookBodyOffset);
- saveSplitState($summary.outerWidth(), summaryOffset, bookBodyOffset);
- });
- }, 1);
-
- $divider.on('mousedown', function (event) {
- event.stopPropagation();
- isDraggable = true;
- grabPointWidth = $summary.outerWidth() - event.pageX;
- });
-
- $body.on('mouseup', function (event) {
- event.stopPropagation();
- isDraggable = false;
- saveSplitState(
- $summary.outerWidth(),
- $summary.position().left,
- $bookBody.position().left
- );
- });
-
- $body.on('mousemove', function (event) {
- if (!isDraggable) {
- return;
- }
- event.stopPropagation();
- event.preventDefault();
- $summary.outerWidth(event.pageX + grabPointWidth);
- $bookBody.offset({ left: event.pageX + grabPointWidth });
- });
-
- function getSplitState() {
- var splitState = JSON.parse(sessionStorage.getItem(KEY_SPLIT_STATE));
- splitState || (splitState = {});
- splitState.summaryWidth || (splitState.summaryWidth = $summary.outerWidth());
- splitState.summaryOffset || (splitState.summaryOffset = $summary.position().left);
- splitState.bookBodyOffset || (splitState.bookBodyOffset = $bookBody.position().left);
- return splitState;
- }
-
- function saveSplitState(summaryWidth, summaryWidthOffset, bookBodyOffset) {
- sessionStorage.setItem(KEY_SPLIT_STATE, JSON.stringify({
- summaryWidth: summaryWidth,
- summaryOffset: summaryWidthOffset,
- bookBodyOffset: bookBodyOffset,
- }));
- }
-
- function setSplitState(summaryWidth, summaryOffset, bookBodyOffset) {
- $summary.outerWidth(summaryWidth);
- $summary.offset({ left: summaryOffset });
- $bookBody.offset({ left: bookBodyOffset });
- // improved broken layout in windows chrome.
- // "$(x).offset" automatically add to "position:relative".
- // but it cause layout broken..
- $summary.css({ position: 'absolute' });
- $bookBody.css({ position: 'absolute' });
- }
- });
-});
diff --git a/node_modules/gitbook-plugin-splitter/gitbook-splitter-demo.gif b/node_modules/gitbook-plugin-splitter/gitbook-splitter-demo.gif
deleted file mode 100644
index 471b355..0000000
Binary files a/node_modules/gitbook-plugin-splitter/gitbook-splitter-demo.gif and /dev/null differ
diff --git a/node_modules/gitbook-plugin-splitter/index.js b/node_modules/gitbook-plugin-splitter/index.js
deleted file mode 100644
index cc724c0..0000000
--- a/node_modules/gitbook-plugin-splitter/index.js
+++ /dev/null
@@ -1,11 +0,0 @@
-module.exports = {
- website: {
- assets: './book',
- js: [
- 'splitter.js'
- ],
- css: [
- 'splitter.css'
- ]
- }
-};
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-splitter/package.json b/node_modules/gitbook-plugin-splitter/package.json
deleted file mode 100644
index 0c14984..0000000
--- a/node_modules/gitbook-plugin-splitter/package.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-splitter",
- "raw": "gitbook-plugin-splitter@0.0.8",
- "rawSpec": "0.0.8",
- "scope": null,
- "spec": "0.0.8",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-splitter@0.0.8",
- "_id": "gitbook-plugin-splitter@0.0.8",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-splitter",
- "_nodeVersion": "4.4.6",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/gitbook-plugin-splitter-0.0.8.tgz_1482673186113_0.8095600951928645"
- },
- "_npmUser": {
- "email": "takehiko.yoshida.z@gmail.com",
- "name": "yoshidax"
- },
- "_npmVersion": "2.15.5",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-splitter",
- "raw": "gitbook-plugin-splitter@0.0.8",
- "rawSpec": "0.0.8",
- "scope": null,
- "spec": "0.0.8",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-splitter/-/gitbook-plugin-splitter-0.0.8.tgz",
- "_shasum": "f2b0513060fc9266b46b04182e4eca1d4b71fafc",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-splitter@0.0.8",
- "_where": "D:\\gitbooktest",
- "author": {
- "name": "yoshidax"
- },
- "bugs": {
- "url": "https://github.com/yoshidax/gitbook-plugin-splitter/issues"
- },
- "dependencies": {},
- "description": "this plug-in provides a vertical bar that divides the summary and main content.",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "f2b0513060fc9266b46b04182e4eca1d4b71fafc",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-splitter/-/gitbook-plugin-splitter-0.0.8.tgz"
- },
- "engines": {
- "gitbook": ">1.x.x"
- },
- "gitHead": "dada79ec409081427aa43abdd7aff083920f4994",
- "homepage": "https://github.com/yoshidax/gitbook-plugin-splitter#readme",
- "keywords": [
- "gitbook"
- ],
- "license": "MIT",
- "main": "index.js",
- "maintainers": [
- {
- "email": "takehiko.yoshida.z@gmail.com",
- "name": "yoshidax"
- }
- ],
- "name": "gitbook-plugin-splitter",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/yoshidax/gitbook-plugin-splitter.git"
- },
- "scripts": {},
- "version": "0.0.8"
-}
diff --git a/node_modules/gitbook-plugin-tbfed-pagefooter/LICENSE b/node_modules/gitbook-plugin-tbfed-pagefooter/LICENSE
deleted file mode 100644
index ad410e1..0000000
--- a/node_modules/gitbook-plugin-tbfed-pagefooter/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
-Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-tbfed-pagefooter/README.md b/node_modules/gitbook-plugin-tbfed-pagefooter/README.md
deleted file mode 100644
index 4e00a1d..0000000
--- a/node_modules/gitbook-plugin-tbfed-pagefooter/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# gitbook-plugin-tbfed-pagefooter
-
-* 插件配置
-
-```javascript
-"tbfed-pagefooter": {
- "copyright":"© Taobao FED Team",
- "modify_label": "该文件修订时间:",
- "modify_format": "YYYY-MM-DD HH:mm:ss"
-}
-```
-
-> copyright 和 modify_label 支持 html 代码
diff --git a/node_modules/gitbook-plugin-tbfed-pagefooter/assets/footer.css b/node_modules/gitbook-plugin-tbfed-pagefooter/assets/footer.css
deleted file mode 100644
index 5205266..0000000
--- a/node_modules/gitbook-plugin-tbfed-pagefooter/assets/footer.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.page-footer {
- margin-top: 50px;
- border-top: 1px solid #ccc;
- overflow: hidden;
- padding: 10px 0;
- font-size: 12px;
- color: #808080;
-}
-.page-footer a {
- color: #808080!important;
- text-decoration: underline!important;
-}
-.footer-modification {
- float: right;
-}
diff --git a/node_modules/gitbook-plugin-tbfed-pagefooter/index.js b/node_modules/gitbook-plugin-tbfed-pagefooter/index.js
deleted file mode 100644
index 70475f8..0000000
--- a/node_modules/gitbook-plugin-tbfed-pagefooter/index.js
+++ /dev/null
@@ -1,36 +0,0 @@
-var moment = require('moment');
-module.exports = {
- book: {
- assets: './assets',
- css: [
- 'footer.css'
- ],
- },
- hooks: {
- 'page:before': function(page) {
- var _label = 'File Modify: ',
- _format = 'YYYY-MM-DD HH:mm:ss',
- _copy = 'powered by Gitbook'
- if(this.options.pluginsConfig['tbfed-pagefooter']) {
- _label = this.options.pluginsConfig['tbfed-pagefooter']['modify_label'] || _label;
- _format = this.options.pluginsConfig['tbfed-pagefooter']['modify_format'] || _format;
-
- var _c = this.options.pluginsConfig['tbfed-pagefooter']['copyright'];
- _copy = _c ? _c + ' all right reserved,' + _copy : _copy;
- }
- var _copy = ''+_copy+''
- var str = ' \n\n'
- page.content = page.content + str;
- return page;
- }
- },
- filters: {
- date: function(d, format) {
- return moment(d).format(format)
- }
- }
-};
diff --git a/node_modules/gitbook-plugin-tbfed-pagefooter/package.json b/node_modules/gitbook-plugin-tbfed-pagefooter/package.json
deleted file mode 100644
index c8d50ad..0000000
--- a/node_modules/gitbook-plugin-tbfed-pagefooter/package.json
+++ /dev/null
@@ -1,85 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-tbfed-pagefooter",
- "raw": "gitbook-plugin-tbfed-pagefooter@0.0.1",
- "rawSpec": "0.0.1",
- "scope": null,
- "spec": "0.0.1",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-tbfed-pagefooter@0.0.1",
- "_id": "gitbook-plugin-tbfed-pagefooter@0.0.1",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-tbfed-pagefooter",
- "_nodeVersion": "0.12.7",
- "_npmUser": {
- "email": "zhj3618@gmail.com",
- "name": "zhj3618"
- },
- "_npmVersion": "2.14.2",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-tbfed-pagefooter",
- "raw": "gitbook-plugin-tbfed-pagefooter@0.0.1",
- "rawSpec": "0.0.1",
- "scope": null,
- "spec": "0.0.1",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-tbfed-pagefooter/-/gitbook-plugin-tbfed-pagefooter-0.0.1.tgz",
- "_shasum": "16ee784062dd8504264c477e8765fc49c41bed3d",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-tbfed-pagefooter@0.0.1",
- "_where": "D:\\gitbooktest",
- "author": {
- "email": "zhj3618@gmail.com",
- "name": "zhj3618"
- },
- "dependencies": {
- "moment": "^2.10.6"
- },
- "description": "定制每篇文章的页脚,可以添加版权和显示文件修改时间",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "16ee784062dd8504264c477e8765fc49c41bed3d",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-tbfed-pagefooter/-/gitbook-plugin-tbfed-pagefooter-0.0.1.tgz"
- },
- "engines": {
- "gitbook": ">=2.4.3"
- },
- "gitHead": "079b117b67769fd8c41ac873280c21a3f88d2830",
- "homepage": "https://github.com/zhj3618/gitbook-plugin-tbfed-pagefooter",
- "keywords": [
- "gitbook",
- "gitbook-plugin",
- "footer",
- "modification"
- ],
- "license": "Apache 2",
- "main": "index.js",
- "maintainers": [
- {
- "email": "zhj3618@gmail.com",
- "name": "zhj3618"
- }
- ],
- "name": "gitbook-plugin-tbfed-pagefooter",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": ""
- },
- "scripts": {},
- "version": "0.0.1"
-}
diff --git a/node_modules/gitbook-plugin-theme-comscore/.npmignore b/node_modules/gitbook-plugin-theme-comscore/.npmignore
deleted file mode 100644
index 55bd688..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/.npmignore
+++ /dev/null
@@ -1,31 +0,0 @@
-# Logs
-logs
-*.log
-
-# Runtime data
-pids
-*.pid
-*.seed
-
-# Directory for instrumented libs generated by jscoverage/JSCover
-lib-cov
-
-# Coverage directory used by tools like istanbul
-coverage
-
-# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-# Compiled binary addons (http://nodejs.org/api/addons.html)
-build/Release
-
-# Dependency directory
-# Deployed apps should consider commenting this line out:
-# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
-node_modules
-
-# IntelliJ project files
-.idea
-*.iml
-out
-gen
diff --git a/node_modules/gitbook-plugin-theme-comscore/LICENSE b/node_modules/gitbook-plugin-theme-comscore/LICENSE
deleted file mode 100644
index ad410e1..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
-Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-theme-comscore/README.md b/node_modules/gitbook-plugin-theme-comscore/README.md
deleted file mode 100644
index 30975b4..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/README.md
+++ /dev/null
@@ -1,113 +0,0 @@
-GitBook Plugin - ComScore Theme
-==============
-
-This is a plugin for Gitbook that uses the comScore color scheme.
-
-~~Install it using: ```$ npm install gitbook-plugin-theme-comscore```~~
-
-Add to a Gitbook by including the following in `book.json`.
-
-``` json
-{
-"plugins": [
- "theme-comscore"
- ]
-}
-```
-
-Then run the following script:
-``` bash
-npm i -g gitbook-cli // maybe need sudo permission
-gitbook install
-```
-
-## How GitBook plugin works?
-
-A plugin for GitBook is a node package that can be published on [NPM](http://www.npmjs.org).
-
-### package.json
-
-#### name
-
-The package name should begin with ```gitbook-plugin-```. And if your plugin is a theme, it should begin with ```gitbook-plugin-theme-```.
-
-Examples: `gitbook-plugin-mixpanel`, `gitbook-plugin-googleanalytics`, `gitbook-plugin-theme-dark`
-
-#### engine
-
-The package.json should contain a `engine` field using [the standard norm](https://www.npmjs.org/doc/json.html#engines).
-
-```
-"engines": {
- "gitbook": "*"
-}
-```
-
-For example if you want your plugin to supports only GitBook version supperior to 0.3.1:
-
-```
-"engines": {
- "gitbook": ">=0.3.1"
-}
-```
-
-### entry point
-
-The plugin entry point should return an object with some metadata.
-
-#### "book"
-
-Type: `Object`
-Default value: `{}`
-
-#### "book.assets"
-
-Type: `String`
-Default value: `null`
-
-Path to the assets folder to copy
-
-#### "book.js"
-
-Type: `Array`
-Default value: `[]`
-
-List of javascript file to add to the html pages (relative to the assets fodler).
-
-#### "book.css"
-
-Type: `Array`
-Default value: `[]`
-
-List of css file to add to the html pages (relative to the assets fodler).
-
-#### "book.html"
-
-Type: `Object`
-Default value: `{}`
-
-Map of position -> code, html snippets to add to each page. The code could be a fucntion.
-
-#### "book.templates"
-
-Type: `Object`
-Default value: `{}`
-
-Templates to override default templates, only use this option if you want to change entirely how the book is rendered.
-
-This object is a map: "name" -> "file", with names:
-
-* "site": page for a file from the `site` format
-* "page": page for the `page` format
-
-#### "hooks"
-
-Type: `Object`
-Default value: `{}`
-
-Map of "name" -> Function that needs to be called during build process. With names:
-
-* "init": just after initialization, before generation
-* "finish": after generation and everything is finished
-
-Each hook can return a promise.
diff --git a/node_modules/gitbook-plugin-theme-comscore/book/test.css b/node_modules/gitbook-plugin-theme-comscore/book/test.css
deleted file mode 100644
index d607618..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/book/test.css
+++ /dev/null
@@ -1,22 +0,0 @@
-section {
- width:100%;
-}
-h1 {
- color: #2674BA;
-}
-h2 {
- color: #0099CC;
-}
-h3 {
- color: #F77A0B;
-}
-h4 {
- color: #662D91;
-}
-h5 {
- color: #444444;
-}
-th {
- background-color: #2674BA;
- color: white;
-}
diff --git a/node_modules/gitbook-plugin-theme-comscore/book/test.js b/node_modules/gitbook-plugin-theme-comscore/book/test.js
deleted file mode 100644
index 856c86f..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/book/test.js
+++ /dev/null
@@ -1,9 +0,0 @@
-require(["gitbook"], function(gitbook) {
- gitbook.events.bind("page.change", function() {
- // do something
- });
-
- gitbook.events.bind("exercise.submit", function() {
- // do something
- });
-});
\ No newline at end of file
diff --git a/node_modules/gitbook-plugin-theme-comscore/index.js b/node_modules/gitbook-plugin-theme-comscore/index.js
deleted file mode 100644
index 5607ba9..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/index.js
+++ /dev/null
@@ -1,76 +0,0 @@
-module.exports = {
- book: {
- assets: "./book",
- js: [
- "test.js"
- ],
- css: [
- "test.css"
- ],
- html: {
- "html:start": function() {
- return ""
- },
- "html:end": function() {
- return ""
- },
-
- "head:start": "",
- "head:end": "",
-
- "body:start": "",
- "body:end": ""
- }
- },
- hooks: {
- // For all the hooks, this represent the current generator
-
- // This is called before the book is generated
- "init": function() {
- console.log("init!");
- },
-
- // This is called after the book generation
- "finish": function() {
- console.log("finish!");
- },
-
- // The following hooks are called for each page of the book
- // and can be used to change page content (html, data or markdown)
-
-
- // Before parsing markdown
- "page:before": function(page) {
- // page.path is the path to the file
- // page.content is a string with the file markdown content
-
- // Example:
- //page.content = "# Title\n" + page.content;
-
- return page;
- },
-
- // Before html generation
- "page": function(page) {
- // page.path is the path to the file
- // page.sections is a list of parsed sections
-
- // Example:
- //page.sections.unshift({type: "normal", content: "Title
"})
-
- return page;
- },
-
- // After html generation
- "page:after": function(page) {
- // page.path is the path to the file
- // page.content is a string with the html output
-
- // Example:
- //page.content = "Title
\n" + page.content;
- // -> This title will be added before the html tag so not visible in the browser
-
- return page;
- }
- }
-};
diff --git a/node_modules/gitbook-plugin-theme-comscore/package.json b/node_modules/gitbook-plugin-theme-comscore/package.json
deleted file mode 100644
index 515b089..0000000
--- a/node_modules/gitbook-plugin-theme-comscore/package.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "gitbook-plugin-theme-comscore",
- "raw": "gitbook-plugin-theme-comscore@0.0.3",
- "rawSpec": "0.0.3",
- "scope": null,
- "spec": "0.0.3",
- "type": "version"
- },
- "D:\\gitbooktest"
- ]
- ],
- "_from": "gitbook-plugin-theme-comscore@0.0.3",
- "_id": "gitbook-plugin-theme-comscore@0.0.3",
- "_inCache": true,
- "_installable": true,
- "_location": "/gitbook-plugin-theme-comscore",
- "_nodeVersion": "4.4.7",
- "_npmOperationalInternal": {
- "host": "packages-16-east.internal.npmjs.com",
- "tmp": "tmp/gitbook-plugin-theme-comscore-0.0.3.tgz_1469400841870_0.42822451679967344"
- },
- "_npmUser": {
- "email": "liujiaren1992@vip.qq.com",
- "name": "jounqin"
- },
- "_npmVersion": "3.10.5",
- "_phantomChildren": {},
- "_requested": {
- "name": "gitbook-plugin-theme-comscore",
- "raw": "gitbook-plugin-theme-comscore@0.0.3",
- "rawSpec": "0.0.3",
- "scope": null,
- "spec": "0.0.3",
- "type": "version"
- },
- "_requiredBy": [
- "#USER"
- ],
- "_resolved": "https://registry.npmjs.org/gitbook-plugin-theme-comscore/-/gitbook-plugin-theme-comscore-0.0.3.tgz",
- "_shasum": "9a254fa4a37135292095e4344f259212b5781fed",
- "_shrinkwrap": null,
- "_spec": "gitbook-plugin-theme-comscore@0.0.3",
- "_where": "D:\\gitbooktest",
- "bugs": {
- "url": "https://github.com/JounQin/gitbook-plugin-cs/issues"
- },
- "dependencies": {},
- "description": "comScore Color Theme plugin for GitBook(renamed from gitbook-theme-comscore)",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "9a254fa4a37135292095e4344f259212b5781fed",
- "tarball": "https://registry.npmjs.org/gitbook-plugin-theme-comscore/-/gitbook-plugin-theme-comscore-0.0.3.tgz"
- },
- "engines": {
- "gitbook": "*"
- },
- "gitHead": "e2ac2a95debd623a7e16f7e8dca3647ce8266ae4",
- "homepage": "https://github.com/JounQin/gitbook-plugin-cs",
- "license": "Apache 2",
- "main": "index.js",
- "maintainers": [
- {
- "email": "liujiaren1992@vip.qq.com",
- "name": "jounqin"
- }
- ],
- "name": "gitbook-plugin-theme-comscore",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/JounQin/gitbook-plugin-cs.git"
- },
- "scripts": {},
- "version": "0.0.3"
-}
diff --git a/node_modules/github-slugid/.npmignore b/node_modules/github-slugid/.npmignore
deleted file mode 100644
index 123ae94..0000000
--- a/node_modules/github-slugid/.npmignore
+++ /dev/null
@@ -1,27 +0,0 @@
-# Logs
-logs
-*.log
-
-# Runtime data
-pids
-*.pid
-*.seed
-
-# Directory for instrumented libs generated by jscoverage/JSCover
-lib-cov
-
-# Coverage directory used by tools like istanbul
-coverage
-
-# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-# node-waf configuration
-.lock-wscript
-
-# Compiled binary addons (http://nodejs.org/api/addons.html)
-build/Release
-
-# Dependency directory
-# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
-node_modules
diff --git a/node_modules/github-slugid/.travis.yml b/node_modules/github-slugid/.travis.yml
deleted file mode 100644
index fd8fbb8..0000000
--- a/node_modules/github-slugid/.travis.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-language: node_js
-node_js:
- - "4.2"
- - "0.12"
- - "0.10"
diff --git a/node_modules/github-slugid/LICENSE b/node_modules/github-slugid/LICENSE
deleted file mode 100644
index 8f71f43..0000000
--- a/node_modules/github-slugid/LICENSE
+++ /dev/null
@@ -1,202 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
diff --git a/node_modules/github-slugid/README.md b/node_modules/github-slugid/README.md
deleted file mode 100644
index 1c17b3f..0000000
--- a/node_modules/github-slugid/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# github-slugid
-
-[![NPM version](https://badge.fury.io/js/github-slugid.svg)](http://badge.fury.io/js/github-slugid)
-[![Linux Build Status](https://travis-ci.org/SamyPesse/github-slugid.png?branch=master)](https://travis-ci.org/SamyPesse/github-slugid)
-
-Slugify IDs like GitHub.
-
-### Installation
-
-```
-npm install github-slugid
-```
-
-### Usage
-
-```js
-var slug = require('github-slugid');
-
-slug('Hello World') == 'hello-world';
-```
-
-[Examples on GitHub](https://gist.github.com/SamyPesse/b3594cc813f026b3fd42)
-[Reference](https://github.com/jch/html-pipeline/blob/master/lib/html/pipeline/toc_filter.rb)
diff --git a/node_modules/github-slugid/index.js b/node_modules/github-slugid/index.js
deleted file mode 100644
index 272328d..0000000
--- a/node_modules/github-slugid/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-
-var SYMBOLS = [
- '[', ']', '!', '"', '\'', '#',
- '$', '%', '&', '(', ')', '*', '+', ',', '.', '/', ':', ';', '<', '=',
- '>', '?', '@', '', '', '^', '_', '`', '{', '|', '}', '~',
- '©', '∑', '®', '†', '“', '”', '‘', '’', '∂', 'ƒ', '™', '℠', '…',
- 'œ', 'Œ','˚', 'º', 'ª', '•', '∆', '∞', '♥', '&', '|'
-];
-
-
-function slug(content, separator) {
- separator = separator || '-';
-
- var re = new RegExp('[\\'+SYMBOLS.join('\\')+']+', 'g');
- var s = content
- .replace(re, '')
- .replace(/ /g, separator)
- .toLowerCase();
-
- if (s[0] == separator) s = s.slice(1);
-
- return s;
-}
-
-module.exports = slug;
diff --git a/node_modules/github-slugid/package.json b/node_modules/github-slugid/package.json
deleted file mode 100644
index 9504ea7..0000000
--- a/node_modules/github-slugid/package.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "github-slugid",
- "raw": "github-slugid@1.0.1",
- "rawSpec": "1.0.1",
- "scope": null,
- "spec": "1.0.1",
- "type": "version"
- },
- "D:\\gitbooktest\\node_modules\\gitbook-plugin-anchors"
- ]
- ],
- "_from": "github-slugid@1.0.1",
- "_id": "github-slugid@1.0.1",
- "_inCache": true,
- "_installable": true,
- "_location": "/github-slugid",
- "_nodeVersion": "5.1.0",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/github-slugid-1.0.1.tgz_1459760568102_0.38316466053947806"
- },
- "_npmUser": {
- "email": "samypesse@gmail.com",
- "name": "samypesse"
- },
- "_npmVersion": "3.7.2",
- "_phantomChildren": {},
- "_requested": {
- "name": "github-slugid",
- "raw": "github-slugid@1.0.1",
- "rawSpec": "1.0.1",
- "scope": null,
- "spec": "1.0.1",
- "type": "version"
- },
- "_requiredBy": [
- "/gitbook-plugin-anchors"
- ],
- "_resolved": "https://registry.npmjs.org/github-slugid/-/github-slugid-1.0.1.tgz",
- "_shasum": "bccdd0815bfad69d8a359fa4fd65947d606ec3c0",
- "_shrinkwrap": null,
- "_spec": "github-slugid@1.0.1",
- "_where": "D:\\gitbooktest\\node_modules\\gitbook-plugin-anchors",
- "author": {
- "email": "samypesse@gmail.com",
- "name": "Samy Pessé"
- },
- "bugs": {
- "url": "https://github.com/SamyPesse/github-slugid/issues"
- },
- "dependencies": {},
- "description": "Slugify like GitHub",
- "devDependencies": {
- "mocha": "2.3.3",
- "should": "7.1.0"
- },
- "directories": {},
- "dist": {
- "shasum": "bccdd0815bfad69d8a359fa4fd65947d606ec3c0",
- "tarball": "https://registry.npmjs.org/github-slugid/-/github-slugid-1.0.1.tgz"
- },
- "gitHead": "26ff92bc8b30b07ac210ee1687e14d10b66100a4",
- "homepage": "https://github.com/SamyPesse/github-slugid#readme",
- "license": "Apache-2.0",
- "main": "index.js",
- "maintainers": [
- {
- "email": "samypesse@gmail.com",
- "name": "samypesse"
- }
- ],
- "name": "github-slugid",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/SamyPesse/github-slugid.git"
- },
- "scripts": {
- "test": "export TESTING=true; mocha --reporter list --bail"
- },
- "version": "1.0.1"
-}
diff --git a/node_modules/github-slugid/test/test.js b/node_modules/github-slugid/test/test.js
deleted file mode 100644
index ee66cbe..0000000
--- a/node_modules/github-slugid/test/test.js
+++ /dev/null
@@ -1,29 +0,0 @@
-var slug = require('../');
-var should = require('should');
-
-var MATCHES = {
- 'hello': 'hello',
- 'hello world': 'hello-world',
- '!weird + id/for headings': 'weird--idfor-heading',
- '您好': '您好',
- 'I ♥ you': 'i--you',
- 'a > b': 'a--b',
- 'Schöner Titel läßt grüßen!? Bel été !': 'schöner-titel-läßt-grüßen-bel-été-'
-}
-
-
-
-describe('slug', function () {
- for (var value in MATCHES) {
- var expected = MATCHES[value];
-
- it('should handle '+ JSON.stringify(value), function() {
- slug(value).should.equal(expected);
- });
-
- it('should handle '+ JSON.stringify(expected), function() {
- slug(expected).should.equal(expected);
- });
- }
-});
-
diff --git a/node_modules/htmlparser2/LICENSE b/node_modules/htmlparser2/LICENSE
deleted file mode 100644
index 0a35e02..0000000
--- a/node_modules/htmlparser2/LICENSE
+++ /dev/null
@@ -1,18 +0,0 @@
-Copyright 2010, 2011, Chris Winberry . All rights reserved.
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to
-deal in the Software without restriction, including without limitation the
-rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-sell copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-IN THE SOFTWARE.
\ No newline at end of file
diff --git a/node_modules/htmlparser2/README.md b/node_modules/htmlparser2/README.md
deleted file mode 100644
index 7590a6a..0000000
--- a/node_modules/htmlparser2/README.md
+++ /dev/null
@@ -1,91 +0,0 @@
-# htmlparser2
-
-[![NPM version](http://img.shields.io/npm/v/htmlparser2.svg?style=flat)](https://npmjs.org/package/htmlparser2)
-[![Downloads](https://img.shields.io/npm/dm/htmlparser2.svg?style=flat)](https://npmjs.org/package/htmlparser2)
-[![Build Status](http://img.shields.io/travis/fb55/htmlparser2/master.svg?style=flat)](http://travis-ci.org/fb55/htmlparser2)
-[![Coverage](http://img.shields.io/coveralls/fb55/htmlparser2.svg?style=flat)](https://coveralls.io/r/fb55/htmlparser2)
-
-A forgiving HTML/XML/RSS parser. The parser can handle streams and provides a callback interface.
-
-## Installation
- npm install htmlparser2
-
-A live demo of htmlparser2 is available [here](http://demos.forbeslindesay.co.uk/htmlparser2/).
-
-## Usage
-
-```javascript
-var htmlparser = require("htmlparser2");
-var parser = new htmlparser.Parser({
- onopentag: function(name, attribs){
- if(name === "script" && attribs.type === "text/javascript"){
- console.log("JS! Hooray!");
- }
- },
- ontext: function(text){
- console.log("-->", text);
- },
- onclosetag: function(tagname){
- if(tagname === "script"){
- console.log("That's it?!");
- }
- }
-}, {decodeEntities: true});
-parser.write("Xyz