Admonitions
GitHub Repo | Changelog | Issues
The Admonitions plugin for Obsidian adds block-styled content and callout functionality to your notes, with a design inspired by Material for MkDocs.
Features
Permalink- Create either a code block or a callout using Admonitions.
- Set default titles, default collapse states, or default no-title options for the callouts you create with Admonitions.
- Admonitions includes editor suggestions to speed up the process of creating custom admonitions and callout boxes.
- Admonitions provides helpful commands for inserting callout boxes and the ability to register commands for specific types.
- Download optional icon packs: Font Awesome (Solid, Regular, Brands), Octicons, and RPG Awesome. As of v12.0.4, Font Awesome packs are also downloaded (a migration step will download them automatically if you had Font Awesome icons in use).
- Check out the Obsidian TTRPG-Share's Repository of Admonitions for some starter admonitions.
Quickstart
PermalinkAdmonitions supports two syntaxes. Both use the same type names, and any custom type you define in settings works as either form.
Callout (Obsidian's native syntax — simpler, works everywhere):
> [!tip] This is a tip
> This is the content of the admonition.
Code block (plugin syntax — supports additional parameters):
```ad-tip
title: This is a tip
collapse: open
This is the content of the admonition.
```
Code blocks support title:, collapse:, icon:, and color: parameters. See Admonition Options for details.