Fix plugs page
parent
5a4fbf57a7
commit
9b6214e7e1
|
@ -17,12 +17,12 @@ Plugs are distributed as self-contained JavaScript bundles (ending with `.plug.j
|
||||||
## Core plugs
|
## Core plugs
|
||||||
These plugs are distributed with SilverBullet and are automatically enabled:
|
These plugs are distributed with SilverBullet and are automatically enabled:
|
||||||
```query
|
```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
|
## Third-party plugs
|
||||||
These plugs are written either by third parties or distributed separately from the main SB distribution:
|
These plugs are written either by third parties or distributed separately from the main SB distribution:
|
||||||
```query
|
```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
|
## How to develop your own plug
|
||||||
|
|
Loading…
Reference in New Issue