Skip to main content

Panache

Build and Test Crates.io Open VSX VS Code PyPI version npm version codecov

Panache is a language server, formatter, and linter for Markdown, Quarto, and R Markdown, built in Rust with a lossless CST parser and support for external formatters and linters on code blocks.

Installation

Panache is available from several sources:

  • crates.io: cargo install --locked panache
  • Homebrew: brew install panache
  • npm: npm install -g @panache-cli/panache (or npx @panache-cli/panache)
  • PyPI: uv tool install panache-cli/pipx install panache-cli
  • Aqua: aqua install jolars/panache
  • NixOS: the panache package on Nixpkgs
  • Arch Linux: from the AUR: panache-bin (prebuilt), panache (built from source)
  • Prebuilt binaries: tarballs, .deb, and .rpm from the releases page
  • VS Code/Open VSX: the Panache extension, from the VS Code Marketplace or Open VSX (also works in Positron), which installs the CLI and starts the language server automatically

Install Script

The installer scripts pick the right release artifact for your platform and install to a user-local directory by default. They download the matching Panache CLI release asset. If you prefer, download and inspect the script before running it.

For macOS and Linux:

curl --proto '=https' --tlsv1.2 -sSf https://panache.bz/install | sh

For Windows PowerShell:

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://panache.bz/install.ps1 | iex"

Set PANACHE_INSTALL_DIR to change the destination and PANACHE_TAG to pin a version.

See getting started for per-platform detail and the development version.

Usage

Panache provides a single CLI interface for formatting, linting, and running the LSP server.

Formatting

To format a file in place, simply run:

panache format document.qmd

You can also format from stdin by piping content into panache format:

cat <file> | panache format

panache format supports glob patterns and recursive directory formatting:

panache format **/*.{qmd,md}

You can use Panache as a linter via the --check flag to check if files are already formatted without making changes:

panache format --check document.qmd

External Code Formatters

Panache supports external formatters for code blocks. For example, you can configure it to run arity on R code blocks and ruff on Python code blocks:

[formatters]
r = "arity"
python = "ruff"
javascript = "prettier"
typescript = "prettier" # Reuse same formatter

You can setup custom formatters or modify built-in presets with additional arguments:

[formatters]
python = ["isort", "black"]
javascript = "myformatter"

[formatters.isort]
args = ["--profile=black"]

[formatters.myformatter]
cmd = "foobar"
args = ["--print-width=100"]
stdin = true

Linting

Panache also features a linter that can report formatting issues and optionally auto-fix them. To run the linter, use:

panache lint document.qmd

As with panache format, you can use glob patterns and recursive formatting:

panache lint **/*.{qmd,md}

External Linters

As with formatting, Panache supports external linters for code blocks. These are configured in the [linters] section of the configuration, but due to the complexity of linting, including dealing with auto-fixing, external linters cannot be customized and only support presets:

# Enable R linting
[linters]
r = "jarl" # R linter with JSON output

Language Server

Panache implements the language server protocol (LSP) to provide editor features like formatting, diagnostics, code actions, and more. See the language server documentation for guides on how to connect Panache to your editor and configure LSP features.

The list of LSP features supported by Panache includes, among others:

  • Document formatting (full document, incremental and range)
  • Diagnostics with quick fixes
  • Code actions for refactoring
    • Convert between loose/compact lists
    • Convert between inline/reference footnotes
  • Document symbols/outline
  • Folding ranges
  • Go to definition for references and footnotes
  • Quarto and Bookdown project awareness

Configuration

Panache looks for a configuration in:

  1. An explicit --config <path>
  2. .panache.toml, panache.toml, or .config/panache.toml in the current directory or a parent directory
  3. The user configuration directory:
    • Linux: $XDG_CONFIG_HOME/panache/config.toml or ~/.config/panache/config.toml
    • macOS: ~/Library/Application Support/panache/config.toml
    • Windows: %APPDATA%\panache\config.toml

Example

# Markdown flavor and line width
flavor = "quarto"

# Formatting style
[format]
wrap = "reflow"
line-width = 80
line-ending = "auto"

# External code formatters (opt-in)
[formatters]
python = ["isort", "black"] # Sequential formatting
latex = "badness"           # Built-in preset
javascript = "prettier"     # Reusable definitions
typescript = "prettier"

# Customize formatters
[formatters.prettier]
prepend-args = ["--print-width=100"]

# External code linters
[linters]
julia = "fatou" # Enable Julia linting
python = "ruff"

See the configuration reference for a complete list of configuration options and their defaults.

Integrations

GitHub Actions

For CI, use the dedicated GitHub Action:

- uses: jolars/panache-action@v1

See the Integrations documentation for configuration options.

Pre-commit Hooks

Panache integrates with pre-commit to automatically format and lint your files before committing.

Installation:

First, install pre-commit if you haven't already:

pip install pre-commit
# or
brew install pre-commit

Then add Panache to your .pre-commit-config.yaml:

repos:
  - repo: https://github.com/jolars/panache-pre-commit
    rev: v3.4.0 # Use the latest version
    hooks:
      - id: panache-format # Format files
      - id: panache-lint # Lint and auto-fix issues

Note: The hooks live in jolars/panache-pre-commit, a thin shim repo.

Install the hooks:

pre-commit install

Panache will now automatically run on your staged .qmd, .md, and .Rmd files before each commit.

See examples/pre-commit-config.yaml for more configuration options.

Motivation

I wanted a formatter that understands Quarto and Pandoc syntax. I have tried to use Prettier as well as mdformat, but both fail to handle some of the particular syntax used in Quarto documents, such as fenced divs and some of the table syntax.

For a side-by-side overview of how Panache compares to Prettier, Pandoc, rumdl, mdformat, mado, markdownlint, markdownlint-cli2, and marksman, see the comparison page. For benchmarks against the same set of tools, see the performance page.

Design Goals and Scope

  • Full LSP implementation with formatting, diagnostics, code actions, and more
  • Standalone CLI for both formatting and linting
  • Support for Quarto, Pandoc, and R Markdown syntax
  • Lossless CST-based parsing
  • Idempotent formatting
  • Semi-opinionated defaults with configurable style options for common formatting decisions
  • Support for running external formatters and linters on code blocks, with built-in presets for popular languages and tools

Acknowledgements

The development of Panache has simplified considerably thanks to the extensive documentation, well-structured code, and testing infrastructure provided by Pandoc. We also owe significant debt to the rust-analyzer project, on which Panache is heavily inspired.

Release files for panache-cli 3.7.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for panache-cli 3.7.0
File Size Uploaded
panache_cli-3.7.0.tar.gz 1.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for panache-cli 3.7.0
File
panache_cli-3.7.0-py3-none-win_arm64.whl Python 3 none Windows ARM64 Details
panache_cli-3.7.0-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
panache_cli-3.7.0-py3-none-musllinux_1_2_x86_64.whl Python 3 none Linux musl 1.2+ x86-64 Details
panache_cli-3.7.0-py3-none-musllinux_1_2_aarch64.whl Python 3 none Linux musl 1.2+ ARM64 Details
panache_cli-3.7.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl Python 3 none Linux glibc 2.17+ x86-64 Details
panache_cli-3.7.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl Python 3 none Linux glibc 2.17+ ARM64 Details
panache_cli-3.7.0-py3-none-macosx_11_0_arm64.whl Python 3 none macOS 11.0+ ARM64 Details
panache_cli-3.7.0-py3-none-macosx_10_12_x86_64.whl Python 3 none macOS 10.12+ x86-64 Details

Total release size: 63.9 MB

Release files / panache_cli-3.7.0.tar.gz

Download URL panache_cli-3.7.0.tar.gz
Size 1.5 MB
Tags Source
SHA-256 checksum
How to use checksums
0b71a26aa035b282fd2612a4a955a396f662c50c7e74a8af7d8118dfd482242a
BLAKE2b-256 checksum
How to use checksums
8bf5472f1ae25f2b7c8868a6c5d557be57a70999c506765aff5f635283956ebe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-win_arm64.whl

Download URL panache_cli-3.7.0-py3-none-win_arm64.whl
Size 7.5 MB
Tags Python 3 Windows ARM64
SHA-256 checksum
How to use checksums
d9d14bb1914d765294e93867c3b9c37f0f2126c3b2b9f5b27074976594fdf82e
BLAKE2b-256 checksum
How to use checksums
b09f7db902fbce24da342179f5bfa8950294f1987c407781a5bd2db6a15e9c46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-win_amd64.whl

Download URL panache_cli-3.7.0-py3-none-win_amd64.whl
Size 7.9 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
6c15e196eee685bdfceef6ea77a5a2cd0dcb64b5bcd846471474f1d8a90d045e
BLAKE2b-256 checksum
How to use checksums
8383076b15561acbf2152d99c1b5dede6a606643c51653cce1c73d4240b38d84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-musllinux_1_2_x86_64.whl

Download URL panache_cli-3.7.0-py3-none-musllinux_1_2_x86_64.whl
Size 8.3 MB
Tags Linux musl 1.2+ x86-64 Python 3
SHA-256 checksum
How to use checksums
c892e2cdde2895083ed8a5936eac0c328ebb54af959546b9764d89490022e775
BLAKE2b-256 checksum
How to use checksums
9404b0659f41543a31791114f12de7467f1a93fef83ec096bfa2b4e11e329772
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-musllinux_1_2_aarch64.whl

Download URL panache_cli-3.7.0-py3-none-musllinux_1_2_aarch64.whl
Size 7.5 MB
Tags Linux musl 1.2+ ARM64 Python 3
SHA-256 checksum
How to use checksums
c887ac6c644bf08608d0f413514bbaaa8cc60d46bc00d72c7a01caa8af240dc9
BLAKE2b-256 checksum
How to use checksums
20ea2d90ce1c7bd2c5d32c8a386cbf040a753a74d1580c05cea10ba76de42d48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL panache_cli-3.7.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.3 MB
Tags Linux glibc 2.17+ x86-64 Python 3
SHA-256 checksum
How to use checksums
33c1e5d71f39a78c54f287f215fdebd8b02e99c55c2528d5a46694f25917df9e
BLAKE2b-256 checksum
How to use checksums
56d331bc1b5f1a5135b4a1103e611dd1ca73865d94498d1ab29b0e5b5759e7ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL panache_cli-3.7.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 7.6 MB
Tags Linux glibc 2.17+ ARM64 Python 3
SHA-256 checksum
How to use checksums
407561b0895678282fa50f3367e116266c3316a2171a88fff78be0f8a3a61b7f
BLAKE2b-256 checksum
How to use checksums
22074f865e30f9c2de43178e0864a520c1e5b377f510dc70f1cdcac296090f4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-macosx_11_0_arm64.whl

Download URL panache_cli-3.7.0-py3-none-macosx_11_0_arm64.whl
Size 7.5 MB
Tags Python 3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6ca67d128550054f258fa7e626e84301c3c0019f2ff4a7ddfd9927c068bc1d97
BLAKE2b-256 checksum
How to use checksums
3ee1a1b8f93b5fa162460061dac39708956ad4504e77bcb73140cf055813a9c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / panache_cli-3.7.0-py3-none-macosx_10_12_x86_64.whl

Download URL panache_cli-3.7.0-py3-none-macosx_10_12_x86_64.whl
Size 7.8 MB
Tags Python 3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1b1efe3c0582ab141f44f6cfda51ad520c48710f0088c15abb442df8d2f8fc43
BLAKE2b-256 checksum
How to use checksums
093e2083af081b00dc1adc72a586f9ee187b3a54429917907be500301cb0975e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release history Release notifications | RSS feed

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page