Dataview plugin snippet showcase

You can now also very easily create a list of backlinks:

list from [[note]] // List all notes which link to [[note]]

Or an index of all links leaving a note:

list from outgoing([[note]]) // List all notes that [[note]] links to

Coupled with the Templater plugin, you can create a template to quickly insert into any note:

# Backlinks

```dataview
list from [[{{tp_title}}]]
```
# Index

```dataview
list from outgoing([[{{tp_title}}]])
```
31 Likes