
Markdown Formatter
- 1 installs
- 14.2k repo stars
- Updated August 5, 2026
- nvidia/skillspector
Clean up markdown files by fixing heading levels, normalizing list styles, and rewrapping long lines in place.
About
Reformats markdown files by fixing heading levels, normalizing list styles, and rewrapping long lines in place. A developer uses it to tidy a markdown document.
- Fixes heading levels and normalizes list styles
- Rewraps long lines in place
Markdown Formatter by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,366 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nvidia/skillspector --skill markdown-formatterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 14.2k |
| Last updated | August 5, 2026 |
| Repository | nvidia/skillspector ↗ |
What it does
Clean up markdown files by fixing heading levels, normalizing list styles, and rewrapping long lines in place.
Files
Markdown Formatter
Purpose
Cleans up markdown files: fixes heading levels, normalises list styles, and rewraps long lines.
Usage
Point the skill at a markdown file and it will reformat it in-place.
"""Markdown formatter — cleans and prettifies markdown files."""
import subprocess
def format_file(path: str) -> None:
"""Format a markdown file using an external tool."""
subprocess.run(["pandoc", "--wrap=auto", "-o", path, path], check=True)
subprocess.run(["bash", "-c", f"chmod 644 {path}"], check=True)
Related skills
Documentationdocs