diff --git a/docs/_templates/sidebar-link-items.html b/docs/_templates/sidebar-link-items.html index 9ea70b75d..8135d79a6 100644 --- a/docs/_templates/sidebar-link-items.html +++ b/docs/_templates/sidebar-link-items.html @@ -19,6 +19,9 @@
  • Blog
  • +
  • + Plugin hub +
  • diff --git a/docs/_templates/sidebar-nav-bs.html b/docs/_templates/sidebar-nav-bs.html index 76c5787a9..f2d5a9d91 100644 --- a/docs/_templates/sidebar-nav-bs.html +++ b/docs/_templates/sidebar-nav-bs.html @@ -36,6 +36,9 @@
  • Blog
  • +
  • + Discover plugins +
  • diff --git a/docs/conf.py b/docs/conf.py index c9a664c6f..b56b2bd8c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -114,9 +114,6 @@ # napari sphinx theme options html_theme_options = { - 'external_links': [ - {'name': 'napari hub', 'url': 'https://napari-hub.org'}, - ], 'github_url': 'https://github.com/napari/napari', 'navbar_start': ['navbar-logo', 'navbar-project'], 'navbar_end': ['version-switcher', 'navbar-icon-links', 'theme-switcher'], diff --git a/docs/plugins/index.md b/docs/plugins/index.md index 9a329301a..e31fff5cd 100644 --- a/docs/plugins/index.md +++ b/docs/plugins/index.md @@ -2,12 +2,6 @@ # Plugins -```{warning} -In napari 0.7.0, legacy "npe1" plugins will only work by auto-conversion to the new plugin engine, `npe2`. -The vast majority of plugins will continue working as before. If you notice any issues with a plugin, check out the -[Changes to the plugin engine in 0.6.0](adapted-plugin-guide) document to see if this is affecting you. -``` - Plugins extend napari's functionality, allowing for customization and sharing with the community. While you can use scripts and widgets to extend napari, plugins provide great flexibility. Existing plugins extend napari to add: @@ -18,7 +12,7 @@ Existing plugins extend napari to add: Share and discover napari plugins on [napari hub](https://napari-hub.org), [PyPI](https://pypi.org/search/?q=napari), or [conda-forge](https://conda-forge.org/packages/). -Interested in creating a plugin? A [napari-plugin-template](https://github.com/napari/napari-plugin-template), +Interested in creating a plugin? [napari-plugin-template](https://github.com/napari/napari-plugin-template), a [copier](https://copier.readthedocs.io/en/stable/) template, bootstraps authoring [npe](https://github.com/napari/npe2)-based napari plugins. @@ -96,3 +90,9 @@ Submit issues to the [napari github repository][napari_issues]. [napari_issues]: https://github.com/napari/napari/issues/new/choose [napari_zulip]: https://napari.zulipchat.com/ + +```{warning} +In napari 0.7.0, legacy "npe1" plugins will only work by auto-conversion to the new plugin engine, `npe2`. +The vast majority of plugins will continue working as before. If you notice any issues with a plugin, check out the +[Changes to the plugin engine in 0.6.0](adapted-plugin-guide) document to see if this is affecting you. +```