I am using Obsidian to make a wiki for my work team.
I would like to know if exits a way to show the last modified notes, to show in the front page the “news” (the last updated articles).
I have searched but only found plugins to show recent files opened in the obsidian gui, what I want it’s to include this information for users in a note. So they can know what articles have been updated by other users.
I have done something very similar, but adding a boolean property “novedad” (novelty in spanish) to be able to choose what articles to show and with the following code
## Novedades
```dataview
table without id
link(file.link, title) as "Artículo",
updated as Modificación
where
novedad
sort
updated desc
What I am unable to do is to add a dataview block inside a column using obsidian-columns plugin.
I suppose it’s not possible or easy to do (I have used properties in columns to alter how they are shown and I have been unable to get a correct syntax to do it).