Fix plugs page

pull/532/head
Zef Hemel 2023-10-13 17:23:50 +02:00
parent 5a4fbf57a7
commit 9b6214e7e1
1 changed files with 2 additions and 2 deletions

View File

@ -17,12 +17,12 @@ Plugs are distributed as self-contained JavaScript bundles (ending with `.plug.j
## Core plugs
These plugs are distributed with SilverBullet and are automatically enabled:
```query
plug where uri = null order by name render [[template/plug]]
plug where tags = "page" and uri = null order by name render [[template/plug]]
```
## Third-party plugs
These plugs are written either by third parties or distributed separately from the main SB distribution:
```query
plug where uri != null order by name render [[template/plug]]
plug where tags = "page" and uri != null order by name render [[template/plug]]
```
## How to develop your own plug