knowledge/MetaIndex.md

90 lines
1.5 KiB
Markdown
Raw Normal View History

2023-12-04 10:02:23 +00:00
---
obj: meta
---
# Index
## Frontmatter
### Notes with websites
```dataview
table website from "/" where website != null
```
### Notes with repositories
```dataview
table repo from "/" where repo != null
```
### Notes with Sources
```dataview
table source from "/" where source != null
```
### Notes with Wiki
```dataview
table wiki from "/" where wiki != null
```
### Notes with Arch Wiki
```dataview
table arch-wiki from "/" where arch-wiki != null
```
### Notes with RFC
```dataview
table rfc from "/" where rfc != null
```
### Notes with Object Type
```dataview
table obj from "/" where obj != null
```
## Object Type
### Applications
```dataview
table android-id, flatpak-id from "/" where startswith(lower(obj), "application")
```
### Operating Systems
```dataview
list from "/" where startswith(lower(obj), "os")
```
2024-03-08 12:25:14 +00:00
### Formats
2023-12-04 10:02:23 +00:00
```dataview
2024-03-08 12:25:14 +00:00
table mime, extension from "/" where startswith(lower(obj), "format")
2023-12-04 10:02:23 +00:00
```
### Filesystems
```dataview
list from "/" where startswith(lower(obj), "filesystem")
```
### Emulators
```dataview
list from "/" where startswith(lower(obj), "emulator")
```
### Concepts
```dataview
list from "/" where startswith(lower(obj), "concept")
```
### Meta Notes
```dataview
list from "/" where startswith(lower(obj), "meta")
```
### Device Notes
```dataview
list from "/" where startswith(lower(obj), "device")
```
### Science Notes
```dataview
list from "/" where startswith(lower(obj), "science")
```
### Website Notes
```dataview
table website, category, status from "/" where startswith(lower(obj), "website")
```