kubernetes-handbook/node_modules/gitbook-plugin-adsense/README.md

35 lines
632 B
Markdown
Raw Permalink Normal View History

2022-02-22 15:54:51 +08:00
Google Adsense for GitBook
==============
You can use install it via **NPM**:
```
$ npm install gitbook-plugin-adsense
```
And use it for your book with in the book.json:
```
{
"plugins": ["adsense"]
}
```
You can set the Google Adsense client and slot keys using the plugins configuration in the book.json:
```
{
"plugins": ["adsense"],
"pluginsConfig": {
"adsense": {
"client": "ca-pub-XXXXXXXXXXXXXXXX",
"slot": "XXXXXXXXXX",
"format": "auto",
"element": ".page-inner section",
"position": "top"
}
}
}
```
Allowed positions are `top` and `bottom` (default)