Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Abbreviations and Acronyms

dragonishdragonish3k downloads

Implements automatic marking of abbreviations and acronyms (terminology).

Add to Obsidian
  • Overview
  • Scorecard
  • Updates22

English | 简体中文 | 繁體中文

Introduction

This is a plugin for Obsidian. Implements automatic marking of abbreviations and acronyms (terminology).

This plugin supports rendering in both reading view, editing view (Live Preview) and source mode (optional). Simultaneously support listing all abbreviations in the current file, and the context menu of the abbreviation element.

Usage

Define abbreviations

You can define abbreviations in properties or using Markdown Extra syntax.

Properties

The plugin gets abbreviations by reading the specified field in the note properties(metadata). You can define abbreviations using a list of strings or a list of key-value pairs.

Strings

Use a colon (:) in the string to separate the abbreviation and the tooltip. Example:

---
abbr:
  - "HTML: HyperText Markup Language"
  - "CSS: Cascading Style Sheets"
---

[!TIP] The advantage of this format is that abbreviations can be added or removed directly in display mode.

Key-value pairs

Use the abbreviation for key and the tooltip for value. Example:

---
abbr:
  - HTML: HyperText Markup Language
  - CSS: Cascading Style Sheets
---

Markdown Extra

[!NOTE] Currently, there is no unified syntax specification, and the implementation of this plugin is similar to PHP Markdown Extra.

You need to Enable Markdown Extra syntax support in the plugin settings to activate this feature. The plugin gets abbreviations by reading the specified format in the note.

To define an abbreviation, simply declare it at the beginning of a line in your notes, for example:

*[W3C]: World Wide Web Consortium

Disable a specific abbreviation:

*[W3C]: 

It is recommended to use blank lines to separate the definition area from the main content. For example:

You can use CSS to style your HTML. 

*[HTML]: HyperText Markup Language
*[CSS]: Cascading Style Sheets

Using style sheets, you can keep your CSS presentation layer and HTML content layer separate.

Same abbreviations

When there are multiple same abbreviations, the scope is as follows:

---
abbr:
  - RAM: Random Access Memory
---

RAM.

*[RAM]: Reliability, Availability, Maintainability

RAM.

*[RAM]: Remote Access Management

RAM.

*[RAM]: 

RAM.

Rendered as:

<abbr title="Random Access Memory">RAM</abbr>.

<abbr title="Reliability, Availability, Maintainability">RAM</abbr>.

<abbr title="Remote Access Management">RAM</abbr>.

RAM.

Command

Add abbreviation

Quickly add abbreviations to properties(metadata).

Copy and format content

Copy the note content and convert abbreviations to <abbr> tags, so that they can be displayed in other Markdown editors that do not support similar syntax.

For example, for the following note content:

---
tags:
  - test
abbr:
  - HTML: HyperText Markup Language
---
# Example

You can use CSS to style your HTML. 

*[CSS]: Cascading Style Sheets

Using style sheets, you can keep your `CSS` presentation layer and `HTML` content layer separate.

This command will copy the following content to the clipboard:

# Example

You can use <abbr title="Cascading Style Sheets">CSS</abbr> to style your <abbr title="HyperText Markup Language">HTML</abbr>. 

Using style sheets, you can keep your `CSS` presentation layer and `HTML` content layer separate.

Insert extra definition

This command is only allowed after enabling the Enable Markdown Extra syntax support setting.

Insert definition of Markdown Extra syntax at current cursor position in activity editor.

When no text is selected, insert the following content:

*[<cursor_position>]: 

When selected text exists, insert the following content:

*[<selected_text>]: <cursor_position>

List abbreviations

List all abbreviations in the current file, then select one and jump to its definition position (for extra), or edit it directly (for metadata or global).

Manage global abbreviations

Quickly manage global abbreviations.

Settings

Metadata keyword

This plugin allows you to customize the keyword that read abbreviations from properties, default value is abbr.

Mark abbreviations in Source mode

In Source mode, mark abbreviations just like in Live Preview and Reading view.

Enable abbreviation detection for languages not separated by spaces

Detect abbreviations in languages that do not use spaces for word segmentation, such as CJK (Chinese, Japanese, Korean).

For example, for the following note content:

---
abbr:
  - "北大: 北京大学"
---

我是一名北大学子。

Only when this option is enabled will it render as:

我是一名<abbr title="北京大学">北大</abbr>学子。

Otherwise, keep it as is:

我是一名北大学子。

Markdown Extra syntax

Enable or disable Markdown Extra syntax features.

In addition, you can show a decorator for extra syntax definitions in the editing view. The content of the decorator can use two variables: ${abbr} and ${tooltip}. To introduce certain information of the current definition into the content. For example, for → ${abbr}:

decorator-example

The CSS variable --abbreviations-definition-decorator-margin can be used to define the spacing of decorators, for example:

body {
  --abbreviations-definition-decorator-margin: 12px;
}

Global abbreviations

This plugin allows you to customize globally available abbreviations. Their priority is lower than abbreviations defined in the notes.

You can add global abbreviations in the settings panel, or specify a global file and add abbreviations in the file.

Suffixes

This plugin allows match supplementary suffixes for abbreviations. For example, it can make the OS match other OSes. More information can see: #3.

Suffix list is defined by the user, with values set as comma-separated string. For example: s, es, less.

Preview

Live Preview:

Source mode Live Preview
source-mode live-preview

Reading:

Source mode Reading
source-mode reading

License

MIT license

77%
HealthExcellent
ReviewCaution
About
Mark abbreviations and acronyms automatically in reading view, Live Preview, and optional source mode. Read definitions from note metadata or Markdown Extra syntax, list all abbreviations in the current file, and provide a context menu for each abbreviation.
Markdown
Details
Current version
1.7.4
Last updated
3 months ago
Created
2 years ago
Updates
22 releases
Downloads
3k
Compatible with
Obsidian 0.15.0+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Sponsor
Ko-fi
Author
dragonishdragonish
github.com/dragonish
GitHubdragonish
  1. Community
  2. Plugins
  3. Markdown
  4. Abbreviations and Acronyms

Related plugins

Importer

Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, and HTML files.

Outliner

Work with your lists like in Workflowy or Roam Research.

Various Complements

Complete words similar to auto-completion in an IDE.

Linter

Format and style your notes. Linter can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular Markdown contents like list, italics, and bold styles; and more with the use of custom rule options.

Fantasy Statblocks

Create, manage and view a Fantasy Bestiary with Dungeons and Dragons style statblocks.

Custom Frames

Turn web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.

Auto Link Title

Automatically fetches the titles of links from the web.

Chronos Timeline

Render interactive timelines inline in your notes from simple markdown

Consistent Attachments and Links

Move note attachments and update links automatically.

Automatic Table Of Contents

Create a table of contents in a note that updates itself when the note changes.