rename category to categories

This commit is contained in:
Steph Ango
2025-05-23 13:17:29 -07:00
parent fd7b6b2d84
commit 831af0dd26
92 changed files with 109 additions and 109 deletions

View File

@@ -3,7 +3,7 @@
"aliases": "aliases", "aliases": "aliases",
"cssclasses": "multitext", "cssclasses": "multitext",
"tags": "tags", "tags": "tags",
"category": "multitext", "categories": "multitext",
"created": "date", "created": "date",
"genre": "multitext", "genre": "multitext",
"director": "multitext", "director": "multitext",

View File

@@ -12,7 +12,7 @@ table without id
year as Year, year as Year,
genre as Genre genre as Genre
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort rating desc sort rating desc
``` ```

View File

@@ -9,6 +9,6 @@ table without id
rating as Rating, rating as Rating,
last as Last last as Last
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
``` ```

View File

@@ -12,7 +12,7 @@ table without id
created as Added, created as Added,
genre as Genre genre as Genre
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort rating desc, date asc sort rating desc, date asc
``` ```

View File

@@ -10,7 +10,7 @@ table without id
created as Clipped, created as Clipped,
published as Published published as Published
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort clipped desc sort clipped desc
``` ```

View File

@@ -8,7 +8,7 @@ table without id
file.link as Company, file.link as Company,
url as Link url as Link
where where
contains(category,this.file.link) contains(categories,this.file.link)
and !contains(file.name, "Template") and !contains(file.name, "Template")
sort file.mtime desc sort file.mtime desc
``` ```

View File

@@ -7,6 +7,6 @@ tags:
table without id table without id
file.link as Event file.link as Event
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
``` ```

View File

@@ -12,7 +12,7 @@ table without id
rating as Rating, rating as Rating,
last as "Last played" last as "Last played"
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort last desc sort last desc
``` ```

View File

@@ -10,7 +10,7 @@ table without id
people as People, people as People,
date as Date date as Date
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort date desc sort date desc
limit 100 limit 100

View File

@@ -12,7 +12,7 @@ table without id
last as "Last seen", last as "Last seen",
director as Director director as Director
where where
contains(category,this.file.link) contains(categories,this.file.link)
and rating > 6 and rating > 6
sort rating desc sort rating desc
``` ```
@@ -27,7 +27,7 @@ table without id
last as "Last seen", last as "Last seen",
director as Director director as Director
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
last != "" and !contains(file.name, "Template") last != "" and !contains(file.name, "Template")
sort last desc sort last desc
limit 100 limit 100

View File

@@ -8,7 +8,7 @@ table without id
file.link as Person, file.link as Person,
filter(file.tags, (t) => t !="#people") as Tags filter(file.tags, (t) => t !="#people") as Tags
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -18,7 +18,7 @@ table without id
type as Type, type as Type,
rating as Rating rating as Rating
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.tags,"places/types") and !contains(file.tags,"places/types") and
!contains(file.name,"Template") !contains(file.name,"Template")
sort last desc sort last desc

View File

@@ -12,7 +12,7 @@ table without id
rating as Rating, rating as Rating,
published as "Published" published as "Published"
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort published desc sort published desc
``` ```

View File

@@ -6,7 +6,7 @@ related: "[[Podcast episodes]]"
table without id table without id
file.link as Podcast, host as "Host" file.link as Podcast, host as "Host"
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -8,7 +8,7 @@ table without id
status as Status, status as Status,
published as Published published as Published
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort published desc sort published desc
``` ```

View File

@@ -12,7 +12,7 @@ table without id
maker as Maker maker as Maker
where where
!contains(file.name, "Template") and !contains(file.name, "Template") and
contains(category, [[Products]]) contains(categories, [[Products]])
sort sort
acquired desc, acquired desc,
file.name, file.name,

View File

@@ -10,7 +10,7 @@ table
status as Status, status as Status,
url as URL url as URL
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort year desc sort year desc
``` ```

View File

@@ -7,7 +7,7 @@ tags:
table without id table without id
file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort created desc sort created desc
``` ```

View File

@@ -9,7 +9,7 @@ table without id
rating as Rating, rating as Rating,
last as "Last seen" last as "Last seen"
where where
contains(category, this.file.link) and contains(categories, this.file.link) and
!contains(file.name, "Template") !contains(file.name, "Template")
sort last desc sort last desc
``` ```

View File

@@ -10,7 +10,7 @@ table without id
start as Start, start as Start,
end as End end as End
where where
contains(category,this.file.link) and contains(categories,this.file.link) and
!contains(file.name, "Template") and !contains(file.name, "Template") and
!contains(file.name, "Planning") !contains(file.name, "Planning")
sort start desc sort start desc

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Clippings]]" - "[[Clippings]]"
author: author:
- "[[Kevin Kelly]]" - "[[Kevin Kelly]]"

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Clippings]]" - "[[Clippings]]"
- "[[Posts]]" - "[[Posts]]"
author: author:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Clippings]]" - "[[Clippings]]"
- "[[Posts]]" - "[[Posts]]"
author: author:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Trips]]" - "[[Trips]]"
start: 2023-09-12 start: 2023-09-12
end: 2023-09-30 end: 2023-09-30

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Meetings]]" - "[[Meetings]]"
type: [] type: []
date: 2023-09-14 date: 2023-09-14

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Posts]]" - "[[Posts]]"
- "[[Clippings]]" - "[[Clippings]]"
created: 2023-09-14 created: 2023-09-14

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Projects]]" - "[[Projects]]"
type: type:
- "[[UI]]" - "[[UI]]"

View File

@@ -13,7 +13,7 @@ table without id
type as Type type as Type
where where
monthly-uses > 0 and monthly-uses > 0 and
contains(category, [[Products]]) contains(categories, [[Products]])
sort sort
round(price/(monthly-uses*((date(today) - acquired).months)),2) asc round(price/(monthly-uses*((date(today) - acquired).months)),2) asc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Albums]]" - "[[Albums]]"
tags: tags:
- music - music

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Movies]]" - "[[Movies]]"
cover: https://m.media-amazon.com/images/M/MV5BNzQzMzJhZTEtOWM4NS00MTdhLTg0YjgtMjM4MDRkZjUwZDBlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg cover: https://m.media-amazon.com/images/M/MV5BNzQzMzJhZTEtOWM4NS00MTdhLTg0YjgtMjM4MDRkZjUwZDBlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg
genre: genre:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Recipes]]" - "[[Recipes]]"
- "[[Clippings]]" - "[[Clippings]]"
cuisine: cuisine:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Board games]]" - "[[Board games]]"
type: [] type: []
maker: maker:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Places]]" - "[[Places]]"
tags: tags:
- places - places

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Shows]]" - "[[Shows]]"
genre: genre:
- "[[Sci-fi]]" - "[[Sci-fi]]"

View File

@@ -10,7 +10,7 @@ table without id
genre as Genre, genre as Genre,
rating as Rating rating as Rating
where where
contains(category, [[Albums]]) and contains(categories, [[Albums]]) and
contains(genre,this.file.link) contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
tags: tags:
- people - people
@@ -14,7 +14,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category,[[Books]]) and contains(categories,[[Books]]) and
contains(author,this.file.link) contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -26,7 +26,7 @@ table without id
file.link as Title, file.link as Title,
published as Published published as Published
where where
contains(category,[[Clippings]]) and contains(categories,[[Clippings]]) and
contains(author,this.file.link) contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -38,7 +38,7 @@ table without id
file.link as Podcast, file.link as Podcast,
published as Published published as Published
where where
contains(category,[[Podcast episodes]]) and contains(categories,[[Podcast episodes]]) and
contains(guests,this.file.link) contains(guests,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Places]]" - "[[Places]]"
type: type:
- "[[Cities]]" - "[[Cities]]"
@@ -22,7 +22,7 @@ table without id
start as Start, start as Start,
end as End end as End
where where
contains(category, [[Trips]]) and contains(categories, [[Trips]]) and
contains(loc, this.file.link) contains(loc, this.file.link)
sort file.name desc sort file.name desc
``` ```
@@ -48,7 +48,7 @@ table without id
rating as Rating, rating as Rating,
type as Type type as Type
where where
contains(category, [[Places]]) and contains(categories, [[Places]]) and
contains(loc, this.file.link) contains(loc, this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Companies]]" - "[[Companies]]"
- "[[Apps]]" - "[[Apps]]"
tags: tags:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Books]]" - "[[Books]]"
cover: "[[out-of-control.jpg]]" cover: "[[out-of-control.jpg]]"
isbn: 201483408 isbn: 201483408

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
tags: tags:
- people - people
@@ -14,7 +14,7 @@ table without id
artist as Artist, artist as Artist,
rating as Rating rating as Rating
where where
contains(category,[[Albums]]) and contains(categories,[[Albums]]) and
contains(artist,this.file.link) contains(artist,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -6,7 +6,7 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Title, file.link as Title,
category as Category, categories as categories,
rating as Rating rating as Rating
where where
contains(genre,this.file.link) contains(genre,this.file.link)

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
tags: tags:
- people - people

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Games]]" - "[[Games]]"
system: "[[Nintendo Switch]]" system: "[[Nintendo Switch]]"
maker: "[[Nintendo]]" maker: "[[Nintendo]]"

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Books]]" - "[[Books]]"
author: author:
- "[[E. M. Forster]]" - "[[E. M. Forster]]"

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Podcast episodes]]" - "[[Podcast episodes]]"
tags: tags:
- podcast - podcast

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Podcasts]]" - "[[Podcasts]]"
host: host:
- "[[Steph Ango]]" - "[[Steph Ango]]"
@@ -15,7 +15,7 @@ table without id
guests as Guest, guests as Guest,
rating as Rating rating as Rating
where where
contains(category,[[Podcast episodes]]) and contains(categories,[[Podcast episodes]]) and
contains(show,this.file.link) contains(show,this.file.link)
sort episode desc sort episode desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: "[[People]]" categories: "[[People]]"
tags: tags:
- people - people
- actors - actors
@@ -12,7 +12,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category,[[Movies]]) and contains(categories,[[Movies]]) and
contains(cast,this.file.link) contains(cast,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Albums]]" - "[[Albums]]"
tags: tags:
- music - music

View File

@@ -1,5 +1,5 @@
--- ---
category: "[[Apps]]" categories: "[[Apps]]"
tags: tags:
- apps - apps
maker: "" maker: ""

View File

@@ -1,5 +1,5 @@
--- ---
category: "[[People]]" categories: "[[People]]"
tags: tags:
- people - people
- authors - authors
@@ -12,7 +12,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category,[[Books]]) and contains(categories,[[Books]]) and
contains(author,this.file.link) contains(author,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Board games]]" - "[[Board games]]"
type: [] type: []
maker: maker:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Books]]" - "[[Books]]"
author: [] author: []
cover: cover:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Places]]" - "[[Places]]"
type: type:
- "[[Cities]]" - "[[Cities]]"
@@ -22,7 +22,7 @@ table without id
start as Start, start as Start,
end as End end as End
where where
contains(category, [[Trips]]) and contains(categories, [[Trips]]) and
contains(loc, this.file.link) contains(loc, this.file.link)
sort file.name desc sort file.name desc
``` ```
@@ -48,7 +48,7 @@ table without id
rating as Rating, rating as Rating,
type as Type type as Type
where where
contains(category, [[Places]]) and contains(categories, [[Places]]) and
contains(loc, this.file.link) contains(loc, this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Clippings]]" - "[[Clippings]]"
tags: tags:
- clippings - clippings

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Coffee]]" - "[[Coffee]]"
maker: maker:
producer: producer:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Companies]]" - "[[Companies]]"
tags: tags:
- companies - companies

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Conference sessions]]" - "[[Conference sessions]]"
conference: conference:
speaker: speaker:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Events]]" - "[[Events]]"
type: "[[Conferences]]" type: "[[Conferences]]"
series: series:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
phone: phone:
twitter: twitter:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
tags: tags:
- people - people
@@ -14,7 +14,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category,[[Movies]]) and contains(categories,[[Movies]]) and
contains(director,this.file.link) contains(director,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Emails]]" - "[[Emails]]"
created: {{date}} created: {{date}}
tags: tags:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Events]]" - "[[Events]]"
tags: tags:
- events - events

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Food]]" - "[[Food]]"
tags: tags:
- food - food

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Companies]]" - "[[Companies]]"
tags: tags:
- companies - companies
@@ -12,7 +12,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category,[[Games]]) and contains(categories,[[Games]]) and
contains(maker,this.file.link) contains(maker,this.file.link)
sort year desc sort year desc
``` ```

View File

@@ -6,7 +6,7 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Title, file.link as Title,
category as Category, categories as categories,
rating as Rating rating as Rating
where where
contains(genre,this.file.link) contains(genre,this.file.link)

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Hosting]]" - "[[Hosting]]"
start: start:
end: end:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Meetings]]" - "[[Meetings]]"
type: type:
- "[[Job Interviews]]" - "[[Job Interviews]]"

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Meditations]]" - "[[Meditations]]"
tags: tags:
- note - note

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Meetings]]" - "[[Meetings]]"
type: [] type: []
date: {{date}} date: {{date}}

View File

@@ -10,7 +10,7 @@ table without id
people as People, people as People,
date as Date date as Date
where where
contains(category, [[Meetings]]) and contains(categories, [[Meetings]]) and
!contains(file.name,"Template") and !contains(file.name,"Template") and
contains(type,this.file.link) contains(type,this.file.link)
sort date desc sort date desc

View File

@@ -8,7 +8,7 @@ table without id
file.link as Movie, file.link as Movie,
rating as "Rating" rating as "Rating"
where where
contains(category,[[Movies]]) and contains(categories,[[Movies]]) and
contains(genre,this.file.link) contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Movies]]" - "[[Movies]]"
cover: cover:
genre: [] genre: []

View File

@@ -10,7 +10,7 @@ table without id
genre as Genre, genre as Genre,
rating as Rating rating as Rating
where where
contains(category,[[Albums]]) and contains(categories,[[Albums]]) and
contains(genre,this.file.link) contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: "[[People]]" categories: "[[People]]"
tags: tags:
- people - people
- musicians - musicians
@@ -14,7 +14,7 @@ table without id
genre as Genre, genre as Genre,
rating as Rating rating as Rating
where where
contains(category,[[Albums]]) and contains(categories,[[Albums]]) and
contains(artist,this.file.link) contains(artist,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[People]]" - "[[People]]"
tags: tags:
- people - people
@@ -14,7 +14,7 @@ table without id
file.link as Meeting, file.link as Meeting,
date as Date date as Date
where where
contains(category,[[Meetings]]) and contains(categories,[[Meetings]]) and
contains(people,this.file.link) contains(people,this.file.link)
sort file.name desc sort file.name desc
``` ```

View File

@@ -7,7 +7,7 @@ tags:
table without id table without id
file.link as Name file.link as Name
where where
contains(category, [[People]]) and contains(categories, [[People]]) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Places]]" - "[[Places]]"
tags: tags:
- places - places

View File

@@ -20,7 +20,7 @@ table without id
rating as Rating, rating as Rating,
loc as Location loc as Location
where where
contains(category, [[Places]]) and contains(categories, [[Places]]) and
!contains(file.name,"Template") and !contains(file.name,"Template") and
contains(type, this.file.link) contains(type, this.file.link)
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Podcast episodes]]" - "[[Podcast episodes]]"
tags: tags:
- podcast - podcast

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Podcasts]]" - "[[Podcasts]]"
host: [] host: []
rating: rating:
@@ -14,7 +14,7 @@ table without id
guests as Guest, guests as Guest,
rating as Rating rating as Rating
where where
contains(category,[[Podcast episodes]]) and contains(categories,[[Podcast episodes]]) and
contains(show,this.file.link) contains(show,this.file.link)
sort episode desc sort episode desc
``` ```

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Posts]]" - "[[Posts]]"
tags: tags:
- posts - posts

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Products]]" - "[[Products]]"
type: type:
maker: maker:

View File

@@ -11,7 +11,7 @@ table without id
rating as Rating, rating as Rating,
acquired as Acquired acquired as Acquired
where where
contains(category, [[Products]]) and contains(categories, [[Products]]) and
!contains(file.name,"Template") and !contains(file.name,"Template") and
contains(type,this.file.link) contains(type,this.file.link)
sort sort

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Projects]]" - "[[Projects]]"
type: [] type: []
org: [] org: []

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Real estate]]" - "[[Real estate]]"
tags: tags:
- places - places

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Recipes]]" - "[[Recipes]]"
cuisine: cuisine:
type: [] type: []

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Places]]" - "[[Places]]"
type: type:
- "[[Restaurants]]" - "[[Restaurants]]"

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Show episodes]]" - "[[Show episodes]]"
show: show:
season: season:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Shows]]" - "[[Shows]]"
genre: [] genre: []
year: year:

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Trips]]" - "[[Trips]]"
start: start:
end: end:

View File

@@ -10,7 +10,7 @@ table without id
year as Year, year as Year,
rating as Rating rating as Rating
where where
contains(category, [[Games]]) and contains(categories, [[Games]]) and
!contains(file.name, "Template") and !contains(file.name, "Template") and
contains(genre, this.file.link) contains(genre, this.file.link)
sort rating desc sort rating desc

View File

@@ -1,5 +1,5 @@
--- ---
category: categories:
- "[[Games]]" - "[[Games]]"
maker: maker:
genre: [] genre: []