Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Panache
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 panache - Homebrew:
brew install panache - npm:
npm install -g @panache-cli/panache(ornpx @panache-cli/panache) - PyPI:
uv tool install panache-cli/pipx install panache-cli - Aqua:
aqua install jolars/panache - NixOS: the
panachepackage on Nixpkgs - Arch Linux: from the AUR:
panache-bin(prebuilt),panache(built from source) - Prebuilt binaries: tarballs,
.deb, and.rpmfrom 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 are fetched from the latest release and then download the matching Panache CLI release asset. If you prefer, download and inspect the script before running it.
For macOS and Linux:
|
For Windows PowerShell:
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://github.com/jolars/panache/releases/latest/download/panache-installer.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:
You can also format from stdin by piping content into panache format:
|
panache format supports glob patterns and recursive directory formatting:
You can use Panache as a linter via the --check flag to check if files are
already formatted without making changes:
External Code Formatters
Panache supports external formatters for code blocks. For example, you can
configure it to run air on R code blocks and ruff on Python code blocks:
[]
= "air"
= "ruff"
= "prettier"
= "prettier" # Reuse same formatter
You can setup custom formatters or modify built-in presets with additional arguments:
[]
= ["isort", "black"]
= "foobar"
[]
= ["--profile=black"]
[]
= "foobar"
= ["--print-width=100"]
= true
Linting
Panache also features a linter that can report formatting issues and optionally auto-fix them. To run the linter, use:
As with panache format, you can use glob patterns and recursive formatting:
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 and at the moment only support R
via the jarl linter:
# Enable R linting
[]
= "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
- Quaro and Bookdown project awareness
Configuration
Panache looks for a configuration in:
.panache.tomlorpanache.tomlin current directory or parent directories$XDG_CONFIG_HOME/panache/config.toml(usually~/.config/panache/config.toml)
Example
# Markdown flavor and line width
= "quarto"
= 80
= "auto"
# Formatting style
[]
= "reflow"
# External code formatters (opt-in)
[]
= ["isort", "black"] # Sequential formatting
= "air" # Built-in preset
= "prettier" # Reusable definitions
= "prettier"
= "yamlfmt" # Formats both code blocks AND frontmatter
# Customize formatters
[]
= ["--print-width=100"]
# External code linters
[]
= "jarl" # Enable R linting
= "ruff"
See examples/panache.toml for a complete configuration reference.
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:
# or
Then add Panache to your .pre-commit-config.yaml:
repos:
- repo: https://github.com/jolars/panache-pre-commit
rev: v2.43.1 # 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. This avoidspre-commit autoupdateresolving to unrelated sub-package tags from this monorepo (e.g.panache-code-*). If you currently point athttps://github.com/jolars/panache, update therepo:URL and runpre-commit autoupdate.
Install the hooks:
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 Panche is heavily inspired.