Obsidian plugin to render structured infoboxes and tag tables from your note metadata.
- β Floating infobox from frontmatter
- πΌοΈ Auto or custom-linked image support
- π Dynamic tag tables grouped by tags
- π¨ Easy styling via CSS
- β‘ One-click command palette templates
- π§ Settings tab for customizing tag levels
- π Sidebar view for real-time tag table display
- π― Ribbon icon for quick sidebar access
- π± Mobile optimized with responsive design and sidebar compatibility fixes
Place files in .obsidian/plugins/WikiKit/:
main.jsmanifest.jsonstyles.css
Enable in Settings β Community Plugins.
WikiKit is fully optimized for mobile devices:
- Responsive infoboxes that stack properly on small screens
- Mobile-friendly tag tables with touch-optimized interactions
- Vault map sidebar compatibility - scrollable tables are automatically disabled on mobile to prevent rendering issues
- Touch-friendly navigation in all sidebar views
- Optimized table layouts for mobile viewing
π‘ Mobile Tip: The vaultmap sidebar automatically disables scrollable tables on mobile devices to ensure reliable rendering in Obsidian's mobile sidebar environment.
Add this code block in any note:
```infobox
caption: Optional caption
exclude: tags,aliases
strip_title: true
image: CustomImage
```| Key | Description |
|---|---|
caption |
Text below image |
title |
Override display title |
exclude |
Comma list of frontmatter keys to hide |
image |
Custom base filename or URL |
strip_title |
Removes prefixes like Folder - Title |
hidetable |
If true, hides all frontmatter rows |
width |
Override default infobox width |
margin_left |
Override default left margin |
margin_bottom |
Override default bottom margin |
If image is omitted, the plugin:
- Uses note filename as base
- Searches attachments folder for
.png,.jpg,.jpeg,.webp,.gif
Renders grouped links based on note tags. Add this block:
```tagtable
level1: Entity
level2: Type
level3: SubType
```- Scans all notes that share the same
level1tag as the current page - Supports multiple area tags - displays separate tables for each area tag found on the page (except for the 'Create Links from Tag Table' command, which only uses the first area tag)
- Respects tag order - tables appear in the same order as tags in frontmatter
- Groups entries by
level2, thenlevel3(optional) - Formats tag names - replaces underscores with spaces and capitalizes all words (e.g.,
video_gamesβVideo Games) - Alphabetical sorting - categories and subcategories are sorted alphabetically for consistent display
- Titles, types, and subtypes are capitalized
- Titles are stripped like infoboxes (default)
| Key | Description |
|---|---|
level1 |
Top-level tag (e.g. Entity) |
level2 |
Middle group tag (e.g. Type) |
level3 |
Subgroup tag (e.g. SubType) |
first_only |
If true, shows only the first area table |
π‘ Note: By default, all area tables are displayed. Use
first_only: trueto show only the first area table.
π Sorting: Categories and subcategories are sorted alphabetically. "Uncategorized" categories and empty subcategories appear first in their respective lists.
π― Pro Tip: Use underscores as invisible sorting prefixes to control order! Since underscores are replaced with spaces during display, you can name tags like
___Collection,__Topic,_Moleculeto force them to appear in that order while displaying as "Collection", "Topic", "Molecule".
π Workflow Tip: Pair with Tag Wrangler for seamless tag structure evolution! Mass rename tags across your vault and watch your tag tables automatically reflect the new organization. Perfect for refining your taxonomy as your knowledge base grows.
Get a high-level overview of your entire vault's content structure. Perfect for home pages and navigation hubs.
Add this code block to any note:
```vaultmap
show_metadata: true
sort_by: created
group_by: area
compact_view: false
```- Scans your entire vault for Collections (
zettel/collection) and Topics (zettel/topic) - Groups by Areas using your
area/tags - Two view modes: Detailed tables or compact overview
- Interactive links for quick navigation
- Metadata display: creation dates, status, and content counts
- Responsive design for desktop and mobile
- NEW: Free-text search in detailed view to instantly filter Collections and Topics by name or area
In the detailed view (the default, when compact_view: false):
- A search box appears above the tables.
- Type any text to instantly filter both Collections and Topics tables.
- The filter matches your text in either the Name or Area columns (case-insensitive, partial match).
- Delete your text to show all results again.
This makes it easy to quickly find any collection or topic, even in large vaults.
| Key | Description |
|---|---|
show_metadata |
Display created date, status, and counts (default: true) |
sort_by |
Sort order: created, modified, name, status (default: created) |
group_by |
Grouping: area, status, none (default: area) |
compact_view |
Use compact overview instead of detailed tables (default: false) |
collection_tag |
Override collection tag (default: from settings) |
topic_tag |
Override topic tag (default: from settings) |
track_tags |
Override trackable tags (default: from settings) |
shorten_tracked_tag_names |
Show only the last part of each tracked tag as the column name (default: from settings) |
status_enabled |
Enable/disable status tracking (default: from settings) |
status_property |
Override status property (default: from settings) |
max_collection_rows |
Maximum collection rows before table becomes scrollable (default: from settings) |
max_topic_rows |
Maximum topic rows before table becomes scrollable (default: from settings) |
- Collections table: Name, Area, Items count, Created date, Status
- Topics table: Name, Area, [Trackable Tags], Created date, Status
- Search box: Instantly filter both tables by name or area
- Summary statistics: Total pages, collections, topics, and tag counts
- Scrollable tables: Large tables become scrollable with sticky headers
- Area-based overview with inline links
- Quick stats for your vault
- Access the Vault Map via the map icon in the ribbon or the command palette
- Sidebar view provides real-time updates and navigation
Tip: Use the Vault Map on your home page or dashboard note for instant vault overview and navigation!
Access a dedicated sidebar view via:
- Ribbon icon (map icon)
- Command palette: "WikiKit: Show Vault Map Sidebar"
The sidebar provides:
- Real-time updates as you navigate between files
- Search functionality (coming soon)
- Quick navigation to any collection or topic
- Recent activity tracking
π‘ Pro Tip: Use the Vault Map on your home page or dashboard note for instant vault overview and navigation!
π― Perfect for: Home pages, dashboards, navigation hubs, and getting a quick sense of your vault's content structure.
Perfect for your vault's home page or dashboard:
# π My Knowledge Vault
Welcome to my digital garden! Here's what I'm working on:
## π Vault Overview
```vaultmap
compact_view: true
sort_by: modified
group_by: area
```
## π― Quick Navigation
- [[Collections]] - Browse all my collections
- [[Topics]] - Explore topics I'm researching
- [[Recent]] - Recently updated contentThis creates a beautiful, interactive dashboard that gives you instant insight into your vault's structure and content.
For users with different naming conventions:
```vaultmap
collection_tag: project/collection
topic_tag: research/topic
track_tags: priority,type,source
status_enabled: true
status_property: priority
```For advanced Zettelkasten workflows:
```vaultmap
collection_tag: zettel/collection
topic_tag: zettel/topic
track_tags: zettel/molecule,zettel/atom,zettel/source
status_enabled: true
status_property: status
```This would show columns for Molecules, Atoms, and Sources in the topics table, perfect for tracking different types of knowledge components.
Control table size and scrolling behavior:
```vaultmap
max_collection_rows: 5
max_topic_rows: 8
show_metadata: true
sort_by: name
```This creates compact tables that show only 5 collections and 8 topics before becoming scrollable, perfect for dashboards with limited space.
Access via Settings β Community Plugins β WikiKit:
- Infobox Width: Default width for infoboxes (default:
320px) - Infobox Margin Left: Left margin for infoboxes (default:
2rem) - Infobox Margin Bottom: Bottom margin for infoboxes (default:
1.5rem) - Strip Title Prefix: Automatically remove prefixes like "Folder - " from titles (default:
true) - Default Exclude Keys: Comma-separated list of frontmatter keys to hide by default (default:
tags,aliases,file,position,created,updated,Source)
- Level 1 Tag: Top-level tag (default:
entity) - Level 2 Tag: Middle group tag (default:
type) - Level 3 Tag: Subgroup tag (default:
subtype) - Table Spacing: Spacing between multiple area tables (default:
2rem)
- Collection Tag: Tag used to identify collection pages (default:
zettel/collection) - Topic Tag: Tag used to identify topic pages (default:
zettel/topic) - Track Tags: Comma-separated list of tag prefixes to count in topics table (default:
status,context,lens) - Shorten Tracked Tag Names: If enabled, only the last part of each tracked tag (e.g. "Atom" from "zettel/atom") will be shown as the column name in the topics table (default:
true) - Enable Status Tracking: Show status column in vault map tables (default:
true) - Status Property: Tag prefix to use for status (default:
status) - Show Metadata: Display created date, status, and counts in vault map tables (default:
true) - Default Sort Order: How to sort collections and topics (default:
created) - Default Grouping: How to group content (default:
area) - Default Compact View: Use compact overview instead of detailed tables (default:
false) - Max Collection Rows: Maximum number of collection rows to display before making the table scrollable (default:
10) - Max Topic Rows: Maximum number of topic rows to display before making the table scrollable (default:
15)
π‘ Scrollable Tables: When tables exceed the configured row limits, they become scrollable with a sticky header. A "+ X more" indicator shows how many additional items are available. This keeps your vault map compact while still providing access to all content.
These settings apply globally unless overridden in individual infobox, tagtable, or vaultmap blocks.
π‘ Note: Settings changes require refreshing the page view to take effect. Simply switch to another note and back.
The plugin includes two sidebar views:
- Shows related pages for the currently active note
- Updates automatically when switching between files
- Uses your configured tag level settings
- Accessible via ribbon icon or command palette
- Shows overview of all Collections and Topics in your vault
- Groups content by Areas using your existing tag structure
- Provides quick navigation to any collection or topic
- Updates in real-time as you navigate
- Click the table icon in the ribbon for Tag Table
- Click the map icon in the ribbon for Vault Map
- Use commands: "WikiKit: Show Tag Table Sidebar" or "WikiKit: Show Vault Map Sidebar"
- Automatically appears on the right side
Use via command palette:
- WikiKit: Insert Infobox - Adds infobox template
- WikiKit: Insert Tag Table - Adds tagtable template
- WikiKit: Insert Vault Map - Adds vaultmap template
- WikiKit: Show Tag Table Sidebar - Opens tag table sidebar view
- WikiKit: Show Vault Map Sidebar - Opens vault map sidebar view
- WikiKit: Create Links from Tag Table - Generates hard-coded links at cursor position for navigation or graph view
Edit styles.css to customize:
- Colors
- Spacing
- Table formatting
- Infobox shadows, fonts
- Sidebar appearance
---
title: John Doe
age: 30
occupation: Developer
tags: [person/character]
---
```infobox
caption: Main character
exclude: tags,aliases
``````infobox
caption: Character profile
width: 280px
margin_left: 1.5rem
margin_bottom: 2rem
exclude: tags,aliases,created
``````tagtable
level1: person
level2: role
level3: department
```---
title: Project Alpha
tags: [area/project, area/research, category/software, subcategory/web]
---
```tagtable
level1: area
level2: category
level3: subcategory
```This will display two separate tables: one for "Project" and one for "Research", each showing related pages grouped by category and subcategory.
```tagtable
level1: area
level2: category
level3: subcategory
first_only: true
```This will display only the first area table, even if the note has multiple area tags.
---
title: Gaming Collection
tags: [area/video_games, category/action_games, subcategory/first_person_shooters]
---
```tagtable
level1: area
level2: category
level3: subcategory
```This will display:
- Area: "Video Games" (from
video_games) - Category: "Action Games" (from
action_games) - Subcategory: "First Person Shooters" (from
first_person_shooters)
- Open any note with tags like
entity/character - Click the ribbon table icon
- See all related pages grouped by type/subtype
- Open any note with area tags
- Use command: "WikiKit: Create Links from Tag Table"
- Hard-coded links are inserted at the cursor position, perfect for navigation sections or for Obsidian's graph view
```vaultmap
show_metadata: true
sort_by: created
group_by: area
compact_view: false
``````vaultmap
compact_view: true
show_metadata: false
``````vaultmap
sort_by: name
group_by: area
show_metadata: true
```Perfect for your vault's home page or dashboard:
# π My Knowledge Vault
Welcome to my digital garden! Here's what I'm working on:
## π Vault Overview
```vaultmap
compact_view: true
sort_by: modified
group_by: area
```
## π― Quick Navigation
- [[Collections]] - Browse all my collections
- [[Topics]] - Explore topics I'm researching
- [[Recent]] - Recently updated contentThis creates a beautiful, interactive dashboard that gives you instant insight into your vault's structure and content.
- Seems to break if empty (malformed) tage in frontmatter (i.e. empty tag:
-)