panache 2.34.0

An LSP, formatter, and linter for Pandoc markdown, Quarto, and RMarkdown
# Code Blocks with Explicit Style

Basic shortcut syntax:

```python
print("hello")
```

Shortcut with attributes:

```python {.numberLines}
x = 42
```

Already explicit:

``` {.haskell #mycode}
qsort [] = []
```

Multiple classes:

``` {.python .numberLines startFrom="10"}
def foo():
    pass
```