Setup summary for documentation

This commit is contained in:
Samy Pessé
2016-02-21 01:02:38 +01:00
parent 2f15e26ffa
commit e16b3e35f4
6 changed files with 33 additions and 16 deletions
+3
View File
@@ -27,6 +27,9 @@ node_modules
# vim swapfile
*.swp
# Output of documentation
docs/_book
lib2
test2
theme2
-14
View File
@@ -1,14 +0,0 @@
var pkg = require('./package.json');
module.exports = {
root: './docs',
plugins: ['versions'],
pluginsConfig: {
versions: {
type: 'tags'
}
},
variables: {
version: pkg.version
}
};
+1 -1
View File
@@ -1,4 +1,4 @@
# GitBook v{{ book.version }}: Documentation
# GitBook Documentation: v{{ book.version }}
### FAQ
+18 -1
View File
@@ -1,13 +1,30 @@
# Summary
### Getting Started
* [About this document](README.md)
* [Installation and Setup](setup.md)
* [Directory structure](structure.md)
### Your Content
* [Configuration](config.md)
* [Pages and Summary](pages.md)
* [Assets](assets.md)
* [Glossary](glossary.md)
### Miscellaneous
* [Templating](templating.md)
* [Content References](conrefs.md)
* [Variables](variables.md)
* [Filters](filters.md)
### Customization
* [Plugins](plugins.md)
* [Theming](themes.md)
* [Theming](themes.md)
--
* [FAQ](faq.md)
+11
View File
@@ -0,0 +1,11 @@
var pkg = require('../package.json');
module.exports = {
"title": "GitBook Documentation",
plugins: ["theme-official"],
theme: "official",
variables: {
version: pkg.version
}
};
View File