A callout in Obsidian is that particular block of text in a note that allow you to:
The 3 types of callouts are shown in the pictures below:
You do not have to install anything to use callouts. They are an embedded feature in Obsidian
A Dataview is a community Obsidian plugin that you have to install it on top of Obsidian to be able to use it. It allows you to summarize data from your notes in 4 forms:
To use the plugin you have to write a query inside a Dataview block. The block starts with 3 backticks followed by the word dataview, and closed by other 3 backticks. As shown below:
```dataview
```
The query is used to select the data to display, and to define how to display this data.
But sometimes, you want to hide the result, and to see it only when needed. This is when you can use callouts.
It’s a simple trick: you write your query first, then you copy all of it, but not the closing backticks. Then you paste everything into the callout. And if there are any blank lines in your dataview block, delete them.
For example, let’s have this query that list the notes in the vault that are created today:
table without id
file.link as "**Note**",
tags as "Tags"
where file.cday = date(today)
And here is the resulting table:
And this how you put it in the following callout:
> [!list]- Notes Created Today
> ```dataview
table without id
file.link as "**Note**",
tags as "Tags"
where file.cday = date(today)
This is the result (when the callout is open, and when it is closed)