Use Addon

Addons are sets of additional components, layouts, styles, configuration...etc. that you can use in your presentation.

They are quite similar to themes, but in general:

  • they don't affect the global styles of your slides
  • you can use multiple addons in one presentation

To use addons, you have to install them manually via:

$ npm install [kolibry-addon-package1] [kolibry-addon-package2]

And then declare the addons either in your frontmatter:

---
addons:
  - kolibry-addon-package1
  - kolibry-addon-package2
---

Or in your package.json file:

// package.json
{
  "kolibry": {
    "addons": [
      "kolibry-addon-package1",
      "kolibry-addon-package2",
    ]
  }
}