Skip to content

Files

Latest commit

442a704 · Oct 26, 2024

History

History
63 lines (48 loc) · 1.19 KB

Tags.md

File metadata and controls

63 lines (48 loc) · 1.19 KB
tags
organizing

You can use tags to organize your notes. All your tags are automatically listed in the sidebar and there is a separate tags page that lists all your tags and notes. In addition, the [[Features/Search|Search]] support filtering by tags, and you can customize the [[Features/Sidebar|Sidebar]] based on tags.

Adding tags

Use Front Matter to add tags to your notes. For a single tag you can directly add the tag name:

---
tags: example
---

My note

For multiple tags, you can either use a list or the [] syntax:

---
tags:
  - one
  - two
  - three
---

My note
---
tags: [one, two, three]
---

My note

Tags mapping

You can customize the visible label of a tag by adding a mapping in the [[Configuration file]].

// /app.mjs
export default defineConfig({
  tags: {
    map: {
      // Map a tag to a different label
      books: "📚 Books",

      // Map a tag to a different label with a custom URL slug
      books: {
        label: "📚 Books & Articles",
        slug: "books",
      },

      // If a tag consists of emojis only, you must provide a mapping for it.
      "⭐": "⭐ Favorites",
    },
  },
});