From 9b6214e7e12a0cb025ab35878e97d78fdec43d70 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Fri, 13 Oct 2023 17:23:50 +0200 Subject: [PATCH] Fix plugs page --- website/🔌 Plugs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/🔌 Plugs.md b/website/🔌 Plugs.md index eba7f4eb..f14e337b 100644 --- a/website/🔌 Plugs.md +++ b/website/🔌 Plugs.md @@ -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