Tag Collection plug-in

I would like a plug-in that finds all occurrences of and collects and groups them into one document.

there is a Task Aggregation plug-in that does this for any item that is a task anywhere in the vault. I would like something that would do it for any and all tags in the vault.

thank you

The tag pane core plugin can do that and conveniently put all your tags on a side panel. To bring tags into a document, you will need to have them on your yaml and/or as an inline field. You can then use the Dataview plugin to recover them on a doc. Here is a thread explaining how it is done.

Hi @schwerd would something like this dataview query work? You didn’t show an example of what you were looking for so it’s hard to determine if it does what you were thinking

dataview
TABLE WITHOUT ID
	"#" + tags AS Tags
  , rows.file.link AS File
FROM ""
FLATTEN
		tags
GROUP BY
		tags
WHERE
		tags

This will show a dataview table grouped by tag and displays the links to the pages that the tag appears in.

image

1 Like

If all you need is a list of file that are tagged, the built-in query block will do that.

tag: #SomeTagName 

will render as a list of filenames that are links back to those files.

If you don’t want the list include in a note, you can use the same syntax
tag: #SomeTagName
in the search field to get the same list in a side-bar.

1 Like