A plugin to validate and convert role mentions inside pages into Holaspirit links
npm install honkit-plugin-holaspiritraw
{% role %}/{% endrole %}
`
Where circle name is the parent circle for the role. As defined in your circles.
Installation
`bash
npm i --save-dev honkit-plugin-holaspirit
`
Then add 'holaspirit' keyword inside the list of plugins in book.json
`json
{
"plugins": [
"holaspirit",
//...other plugins
],
`
Configuration
This plugin requires two fields to be filled:
- organizationId of your organization account in Holaspirit.
- access token that is a read-only access token to use Holaspirit APIs
organizationId can be obtained from the URL, since Holaspirit links have this format:
`
https://app.holaspirit.com/o//governance/chart
`
while access token must be requested to the Holaspirit support.
When you have both fields you can add the holaspirit plugin configuration under pluginsConfig in book.json as shown below:
`json
"pluginsConfig": {
"holaspirit": {
"token": "env://" //or "token://",
"organizationId": ""
},
//...other plugins configs...
}
``