Skip to main content

An LSP, formatter, and linter for Pandoc markdown, Quarto, and RMarkdown

Project description

Panache

Build and Test Crates.io Open VSX VS Code codecov

A language server, formatter, and linter for Pandoc, Quarto, and R Markdown.

Installation

From crates.io

If you have Rust installed, the easiest way is likely to install from crates.io:

cargo install panache

Pre-built Binaries

Alternatively, you can install pre-built binary packages from the releases page for Linux, macOS, and Windows. For Linux, packages are available for generic distributions (tarballs) as well as Debian/Ubuntu (.deb) and Fedora/RHEL/openSUSE (.rpm).

If you prefer a one-liner installer that picks the right release artifact for your platform, you can use the installer scripts below. These scripts are fetched directly from this repository and then download the latest matching Panache CLI release asset for your platform, installing to a user-local directory by default. If you prefer, download and inspect the script before running it.

For macOS and Linux:

curl --proto '=https' --tlsv1.2 -LsSf \
    https://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.sh | sh

For Windows PowerShell:

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.ps1 | iex"

Arch Linux

There are also two recipies available for Arch Linux in the AUR: panache and panache-bin. The first builds from source for your system, the second uses precompiled binaries attatched to GH releases. Install either using yay or your favorite AUR helper:

yay -S panache
yay -S panache-bin

NixOS

Panache is available in NixOS via the panache package in nixpkgs. To add it to your system configuration, include it in the environment.systemPackages:

{ pkgs, ... }:

{
  environment.systemPackages = [
    pkgs.panache
  ];
}

VS Code Extension

If you are running VS Code or an editor that supports VS Code extensions (like Positron), you can install the Panache extension from the VS Code Marketplace or the Open VSX extension, which will automatically also install the panache CLI and start the language server when editing supported files.

Development Version

To install the latest development version, you can run

cargo install --git https://github.com/jolars/panache.git panache

This presumes you have a working and up-to-date Rust toolchain (stable, 2024 edition) installed. You also need to have cargo in your PATH if you want to use the panache command directly after installation.

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 air on R code blocks and ruff on Python code blocks:

[formatters]
r = "air"
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 = "foobar"

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

[formatters.myformatters]
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 and at the moment only support R via the jarl linter:

# 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.

Most users should configure their editor to start the language server automatically when editing. See the language server documentation for guides on configuring your editor. For VS Code and related editors such as Positron, there is a VS Code Marketplace extension and Open VSX extension that provides an LSP client and additional features.

If you need to run the server manually (for debugging), use:

panache lsp

The server communicates over stdin/stdout and provides document formatting capabilities. For Quarto projects, the LSP also reads _quarto.yml, per-directory _metadata.yml, and metadata-files includes to supply project-level metadata to bibliography-aware features. For Bookdown, _bookdown.yml, _output.yml, and index.Rmd frontmatter are also considered.

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

Configuration

Panache looks for a configuration in:

  1. .panache.toml or panache.toml in current directory or parent directories
  2. $XDG_CONFIG_HOME/panache/config.toml (usually ~/.config/panache/config.toml)

Example

# Markdown flavor and line width
flavor = "quarto"
line-width = 80
line-ending = "auto"

# Formatting style
[format]
wrap = "reflow"

# External code formatters (opt-in)
[formatters]
python = ["isort", "black"] # Sequential formatting
r = "air"                   # Built-in preset
javascript = "prettier"     # Reusable definitions
typescript = "prettier"
yaml = "yamlfmt"            # Formats both code blocks AND frontmatter

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

# External code linters
[linters]
r = "jarl" # Enable R linting

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:

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
    rev: v2.16.0 # Use the latest version
    hooks:
      - id: panache-format # Format files
      - id: panache-lint # Lint and auto-fix issues

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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

panache_cli-2.39.0.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

panache_cli-2.39.0-py3-none-win_arm64.whl (4.2 MB view details)

Uploaded Python 3Windows ARM64

panache_cli-2.39.0-py3-none-win_amd64.whl (4.5 MB view details)

Uploaded Python 3Windows x86-64

panache_cli-2.39.0-py3-none-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

panache_cli-2.39.0-py3-none-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

panache_cli-2.39.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

panache_cli-2.39.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

panache_cli-2.39.0-py3-none-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

panache_cli-2.39.0-py3-none-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file panache_cli-2.39.0.tar.gz.

File metadata

  • Download URL: panache_cli-2.39.0.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for panache_cli-2.39.0.tar.gz
Algorithm Hash digest
SHA256 1dfe779e8772449f7460462f892ca83db9200696d1bd13f50b24886022cf5cfe
MD5 05153c073c933b807166f086e57627e5
BLAKE2b-256 294d70005997a593482f3020ef9ca213f0f07194fc520865f20e9566ebe8b0b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0.tar.gz:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-win_arm64.whl.

File metadata

  • Download URL: panache_cli-2.39.0-py3-none-win_arm64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for panache_cli-2.39.0-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 bdd41d868d11a91ce7a408329b858ead7f7001e4d562ca53cfa91b1b19824dfe
MD5 9d23bdb1beff26c0d2fbdcd6dc6f7a13
BLAKE2b-256 d02550182fd9a17734af833c9a3e1d0755c44fc3e8bfe7092efe6604c5181474

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-win_arm64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: panache_cli-2.39.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for panache_cli-2.39.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a4ad1e117175bf5395187a9592bb68dd59808e9e9ca7b1be9805a33dfb12be4
MD5 090da64b519a5f4d5d328b466a62d422
BLAKE2b-256 392452166d88c032fc62e85d2e72bd170c7ef52ee9c4ab1bee71e17d53944db6

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-win_amd64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c36d3a7765faf6c3485d124084be480be773bea1d407b17ba985f42c1a8eafc
MD5 f9b7227ce243bbc2f00e126b3d847c4e
BLAKE2b-256 b2149a3bcd929b67df08a31604217e4f6f809271df813986ec6dd60a287f0a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7634bba7e087aeb5c5942530c1090ef431c7f46344e0c72ac1ea7aad56a4fcbc
MD5 723ddd87d81d97edf8be28882fd96e77
BLAKE2b-256 5ca5d71d7610e7bec9ba4f14e13f95a80d2386d4a45d4a70fcafc8fd76fe60d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf2e47bd55f97c27c7f86bd09871973fe6a03d294315409c0db2b6be3e8a96c2
MD5 4802ddc031fc0c9232cefd59bbdedf4b
BLAKE2b-256 dfc24fce61e9698c8c91a1b9a9ffdfe40badccd89baaf7cb44ebd3d2a3f0e9ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a67c2e45002424e50e73bc400a6ceda6e3d6931b0ef16c02e9b3d73ea4a21f0
MD5 0df1233a736bd2fef5528a73e347986e
BLAKE2b-256 77de1a9a627290af98461f4f399df212e71a310d4355c10c4a851637c8df1d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94d53c6879d5dc7fd273d6499c06bc7a3900d72b2a1e634b2a0b2decfad04c2d
MD5 cee6ffc7dc5423da51c41bb40797778d
BLAKE2b-256 f7ce55de8b02bfe6b73c8a2a689b2858c3b9359b8c1087f59b0866503956c4d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file panache_cli-2.39.0-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for panache_cli-2.39.0-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ba366a0ae8e814dceaf9efe4887a5e9706a196f5a02c2ab8cbfebd87f1a8e4a
MD5 1b3a0ba2b17087820d135cbd26cbed9e
BLAKE2b-256 cc956d7592d35491b42ebdd4a0e49db07cdf4d84a6286c19845473585dea8c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for panache_cli-2.39.0-py3-none-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on jolars/panache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page