Enhancement Suite

by lemon695
5
4
3
2
1
New Plugin

Description

This plugin has not been manually reviewed by Obsidian staff. Bundle many editing helpers into one plugin: table sorting, YAML tools, export, search and replace, JSON and base viewers, word count, footnotes, callouts, reading progress, rename, clipboard copy, and terminal launch.

Reviews

No reviews yet.

Stats

stars
downloads
0
forks
0
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Enhancement Suite

A modular Obsidian plugin that bundles multiple practical enhancements into one lightweight, independently configurable package.

Each module can be toggled on or off from the settings panel. The plugin automatically switches between English and Simplified Chinese based on your Obsidian language setting.


Features

Table enhancement

  • Sort any table column ascending or descending via command palette
  • Row filtering support (toggle in settings)

YAML / frontmatter

  • Real-time validation — highlights YAML syntax errors in the frontmatter as you type (300 ms debounce), with an actionable error message
  • Frontmatter summary — command that shows field count, key names, and any validation errors for the active note
  • JSON Property Viewer — in Reading View, object and array typed properties get a right-click copy menu and a click-to-open tree viewer modal (collapsible nodes, one-click JSON copy)
  • Batch property editing — update a frontmatter property across multiple notes from one command

Export

  • Export the active note to clean Markdown (strips Obsidian-specific syntax such as wikilinks and callouts)
  • Export to standalone HTML (inline styles, no external dependencies — share a single file)
  • Optionally embed vault images into exported HTML as Base64 data URIs
  • Trigger Obsidian's built-in PDF export directly from the command palette
  • Output files are saved to the vault root; filename collisions are avoided automatically by appending a timestamp

Find & replace

  • Full-featured search dialog with case-sensitive and regex toggles
  • Live preview of up to 50 matches with highlighted terms and line numbers
  • Replace (first match) or Replace All — replacements use the editor's native replaceRange API so they are fully undoable
  • Cross-file replace support with grouped results

JSON tools

  • Open .json files in a dedicated tree/source dual-mode view
  • Validate and format JSON files directly inside Obsidian
  • Add a View JSON action to Markdown json code blocks

Note statistics

  • Show live word count and estimated reading time in the status bar
  • Count CJK characters and Latin words separately for more accurate estimates

Footnotes

  • Insert footnotes with automatic numbering
  • Renumber footnotes by first appearance order
  • Clean orphaned footnote definitions

Callouts

  • Insert built-in Obsidian callout blocks from a fuzzy picker

Reading progress

  • Show a sticky reading progress bar in Reading View
  • Customize the bar color and height in settings

Installation

  1. Open Settings → Community plugins → Browse
  2. Search for Enhancement Suite
  3. Click Install, then Enable

Manual

Copy main.js, manifest.json, and styles.css to:

<Vault>/.obsidian/plugins/enhancement-suite/

Reload Obsidian and enable the plugin under Settings → Community plugins.


Requirements

  • Obsidian 0.15.0 or later
  • Works on desktop and mobile

Development

npm install
npm run dev     # watch mode (esbuild)
npm run build   # production build (tsc type-check + esbuild)
npm test        # Vitest
npm run lint    # ESLint

The compiled main.js is not committed to this repository. Download it from the Releases page or build it locally.


License

MIT