notes/Library/Core/Page/Space Overview.md

40 lines
809 B
Markdown
Raw Normal View History

2024-09-30 12:15:00 +02:00
#meta
This page compiles some useful things about your space and may also be useful for debugging things.
# Stats
```template
**Total pages:** {{count({page select name})}}
**Total attachments:** {{count({attachment select name})}}
**Total tags:** {{count({tag select name})}}
```
# Active [[!silverbullet.md/Space Script]]
```template
{{#each {space-script}}}
* [[{{ref}}]]
{{/each}}
```
# Active [[!silverbullet.md/Space Style]]
```template
{{#each {space-style}}}
* [[{{ref}}]]
{{/each}}
```
# Active [[!silverbullet.md/Space Config]]
You have space config defined on the following pages:
```template
{{#each {space-config select replace(ref, /@.+/, "") as page}}}
* [[{{page}}]]
{{/each}}
```
Composed, this leads to the following active configuration:
```template
~~~yaml
{{yaml(@config)}}
~~~
```