Minor page deocration doc fix

pull/951/head
Zef Hemel 2024-07-14 12:19:31 +02:00
parent d54c400b76
commit a9ed194fa1
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"tasks": { "tasks": {
"clean": "rm -rf dist dist_client_bundle dist_plug_bundle website_build", "clean": "rm -rf dist dist_client_bundle dist_plug_bundle website_build",
"deep-clean-mac": "rm -f deno.lock && rm -rf $HOME/Library/Caches/deno && deno task clean", "deep-clean-mac": "rm -f deno.lock && rm -rf $HOME/Library/Caches/deno && deno task clean",
"install": "deno install -f --unstable-kv --unstable-worker-options -A --importmap import_map.json silverbullet.ts", "install": "deno install -g -f --unstable-kv --unstable-worker-options -A --importmap import_map.json silverbullet.ts",
"check": "find . -name '*.ts*' | xargs deno check", "check": "find . -name '*.ts*' | xargs deno check",
"test": "deno test -A --unstable-kv --unstable-worker-options", "test": "deno test -A --unstable-kv --unstable-worker-options",
"build": "deno run -A build_plugs.ts && deno run -A build_web.ts", "build": "deno run -A build_plugs.ts && deno run -A build_web.ts",

View File

@ -19,7 +19,8 @@ Every page decoration has two parts:
For example: For example:
```yaml ```yaml
- where: 'tags = "person"' pageDecorations:
- where: "tags = 'person'"
prefix: "🧑 " prefix: "🧑 "
``` ```