panache 2.44.0

An LSP, formatter, and linter for Markdown, Quarto, and R Markdown
```{r}
#| echo: false

1 + 1
```

The following is a Quarto code block with execution disabled.

```{{python}}
1 + 1
```

If you want to show an example with multiple code blocks and other markdown,
just enclose the entire example in 4 backticks (e.g. \`\`\`\`) and use the two
curly brace syntax for code blocks within. For example:

````
---
title: "My document"
---

Some markdown content.

```{{python}}
1 + 1
```

Some additional markdown content.

````