View your notes without being limited by your file system's hierarchy.
Markdown files with the directive
<!--@nested-tags:topic,here/is/a/nested/example-->or yaml frontmatter with a tags property (square brackets style)
---
title: Hello nested tags
tags: [topic, here/is/a/nested/example]
---
or yaml frontmatter with a tags property (unordered list style)
---
title: Hello nested tags
tags:
- topic
- here/is/a/nested/example
---
will be visible from the file tab under a "Tag Tree" view.
| Name | Type | Description |
|---|---|---|
vscode-nested-tags.additionalFileTypes |
Array | Additional file types to introspect for tags. |
You can define custom file extensions in your settings.json. These file extensions allow the plugin to look at more than just markdown files for the tag system.
Here's an example settings.json file.
{
"vscode-nested-tags.additionalFileTypes": ["tex", "html"]
}Now all .tex and .html files till be watched alongside .md files.
This extension has only been tested on macOS.
vs code 1.30.0 is required at a minimum.
