2023-09-13 14:12:55

This commit is contained in:
Steph Ango
2023-09-13 14:12:55 -07:00
parent 3150bc526d
commit 97e1da4d2b
37 changed files with 244 additions and 95 deletions

View File

@@ -1,7 +1,9 @@
---
category:
- "[[Recipes]]"
cuisine:
- "[[Clippings]]"
cuisine:
- "[[American]]"
type:
- "[[Dessert]]"
ingredients:
@@ -9,7 +11,9 @@ ingredients:
author:
- "[[Steph Ango]]"
url: https://stephango.com/brown-butter-nectarine-tart
servings: 8 slices (11 inch tart)
rating: 7
published: 2023-07-30
created: 2023-09-12
last: 2023-09-12
tags:

View File

@@ -4,8 +4,13 @@ tags:
---
```dataview
table without id file.link as Album, artist as "Artist", genre as "Genre", rating as "Rating"
table without id
file.link as Album,
artist as Artist,
genre as Genre,
rating as Rating
from #albums
where genre = this.file.link or contains(genre,this.file.link)
where
contains(genre,this.file.link)
sort rating desc
```

View File

@@ -9,16 +9,22 @@ created: 2023-09-12
## Books
```dataview
table without id file.link as Title, year as "Year", rating as "Rating"
table without id
file.link as Title,
year as Year,
rating as Rating
from #books
where author = this.file.link or contains(author,this.file.link)
where
contains(author,this.file.link)
sort rating desc
```
# Clippings
```dataview
table without id file.link as Title, published as Published
table without id
file.link as Title,
published as Published
from #clippings
where author = this.file.link or contains(author,this.file.link)
sort rating desc
@@ -27,7 +33,9 @@ sort rating desc
# Podcast episodes
```dataview
table without id file.link as Podcast, published as Published
table without id
file.link as Podcast,
published as Published
from #episodes
where contains(guests,this.file.link)
sort rating desc

View File

@@ -9,8 +9,12 @@ created: 2023-09-13
## Albums
```dataview
table without id file.link as Album, artist as "Artist", rating as "Rating"
from #albums
where artist = this.file.link or contains(artist,this.file.link)
table without id
file.link as Album,
artist as Artist,
rating as Rating
where
contains(category,[[Albums]]) and
contains(artist,this.file.link)
sort rating desc
```

View File

@@ -13,7 +13,8 @@ url: https://stephango.com/
## Clippings
```dataview
table without id file.link as Title, published as Publish
table without id
file.link as Title, published as Publish
where author = this.file.link or contains(author,this.file.link)
sort rating desc
```
@@ -21,7 +22,8 @@ sort rating desc
## Meetings
```dataview
table without id file.link as Meeting, date as Date
table without id
file.link as Meeting, date as Date
where contains(people,this.file.link)
sort file.name desc
```

View File

@@ -10,8 +10,12 @@ tags:
## Episodes
```dataview
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating"
from #podcast and #episodes
where show = this.file.link
table without id
link(file.link, "Ep. " + string(episode)) as Episode,
guests as Guest,
rating as Rating
where
contains(category,[[Podcast episodes]]) and
contains(show,this.file.link)
sort episode desc
```