gitbook-plugin-components-2
v0.0.4
Published
For Gitbook projects: Add html templates to the target selector of your choice. Useful for headers and footers.
Readme
Gitbook Plugin Components
Adds the ability to use 'components' (basically, html templates).
Install
Add 'components' to the book.json plugins array:
{
"plugins": ["components"],
}Then make sure to run install after adding the plugin:
gitbook install...and then:
gitbook serveConfiguration options
You can see an example config options below for book.json.
This will look for docs/components/header.html and prepend it to body.
Then it will look for docs/components/footer.html and append it to .book.
{
"pluginsConfig": {
"components": {
"templatePath": "docs/components",
"templates": [
{
"name": "header",
"target": "body",
"prepend": "true"
},
{
"name": "footer",
"target": ".book",
"prepend": "false"
}
]
}
}
}Default values for templatePath is docs/components and default for prepend is true.
