Why Use mdit-plugin-iconify
mdit-plugin-iconify
extends markdown-it to let you insert icons directly into Markdown using any Iconify collection.
It solves a simple but common problem: Markdown supports text, code, and images - but not scalable icons that integrate cleanly with text and styling systems.
Use Case
When writing documentation, blogs, or component guides, icons often improve clarity and visual hierarchy:
- Mark completed features
- Highlight warnings
- Show package names
- Indicate links or external resources
Without this plugin, you would either:
- Copy raw SVGs into Markdown (verbose and unmaintainable), or
- Use Unicode emoji (limited and inconsistent across platforms).
mdit-plugin-iconify
replaces that with a consistent, extensible syntax:
::check-circle:: Features Ready
::social/github:: View Source
Advantages
1. Universal Icon Access
Supports all @iconify-json/*
packages and custom collections. Tens of thousands of icons are instantly available.
2. Semantic and Readable
Icons are defined with clear text syntax, not SVG blobs or magic Unicode characters.
3. Inline and Self-Contained
Icons are packed directly into the rendered HTML - no external network calls or font loading.
4. Size and Class Modifiers
Control visual size or apply utility classes right inside Markdown:
::bug::{.lg.text-red-500}
5. Framework-Agnostic
Works with any environment that uses Markdown and markdown-it
: VitePress, VuePress, Nuxt Content, or custom Node.js pipelines.
When to Use It
Use mdit-plugin-iconify
if:
- You want visual clarity without leaving Markdown.
- You prefer icons that load instantly and scale perfectly.
- You already use markdown-it or VitePress-based tooling.
Avoid it only if:
- You rely on Markdown parsers that don’t use
markdown-it
. - You require dynamic, interactive icons that depend on runtime JavaScript.