1
0

vault backup: 2025-12-08 20:10:35
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 1m38s

This commit is contained in:
2025-12-08 20:10:35 +01:00
parent e1f922c195
commit 1ae560358d
690 changed files with 16 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
```dataviewjs
const paths = dv.pages("#provfråga and #glykolysen")
.sort(p => p.file.name)
.map(p => p.file.path)
dv.span("Antal frågor: " + paths.length + " \n \n")
for (const path of paths) {
dv.span(" \n[[" + path + "]]\n")
const content = await dv.io.load(path)
dv.span(content)
dv.span(" \n \n-----\n\n\n")
}
```