gitbook-plugin-github-issue-feedback
Version:
GitHub issue feedback for gitbook.
106 lines (76 loc) • 2.14 kB
Markdown
GitHub issue feedback for gitbook.
[](http://www.giphy.com/gifs/3o7btYpgJvLlhkJMfC)
Install with [npm](https://www.npmjs.com/):
npm install gitbook-plugin-github-issue-feedback
You should set `repo` in your `book.json`.
`book.json`
- `repo`: `owner/name`
```json
{
"gitbook": ">=3.0.0",
"title": "Example",
"plugins": [
"github-issue-feedback"
],
"pluginsConfig": {
"github-issue-feedback": {
"repo": "azu/gitbook-plugin-github-issue-feedback"
}
}
}
```
- `private`: `boolean` (optional, default is `false`)
For private repositories, set this flag.
```json
{
"gitbook": ">=3.0.0",
"title": "Example",
"plugins": [
"github-issue-feedback"
],
"pluginsConfig": {
"github-issue-feedback": {
"repo": "your/private_repo",
"private": true
}
}
}
```
- `label`: button label (optional, default is `Bug Report`)
Set button label if you want to use other than default.
```json
{
"gitbook": ">=3.0.0",
"title": "Example",
"plugins": [
"github-issue-feedback"
],
"pluginsConfig": {
"github-issue-feedback": {
"repo": "your/private_repo",
"label": "Report Issue on GitHub"
}
}
}
```
See [Releases page](https://github.com/azu/gitbook-plugin-github-issue-feedback/releases).
Install devDependencies and Run `npm test`:
npm i -d && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, [please create an issue](https://github.com/azu/gitbook-plugin-github-issue-feedback/issues).
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D
- [github/azu](https://github.com/azu)
- [twitter/azu_re](https://twitter.com/azu_re)
MIT © azu