This note collects all notes where their in property has Quotes.
# Quotes
TABLE WITHOUT ID file.link as Quote, join(list(by)) as By, rank as RankWHERE contains(in,this.file.link) and !contains(file.name, "Template")SORT rank desc, by asc
If a quote isn’t in its own dedicated note, you can instead prefix it with quote:: to show in the results below:
# Inline Quotes
TABLE WITHOUT ID join(quote, " ") as Quote, file.link as FromWHERE quote and !contains(file.name, "Template")SORT rank desc, by asc