panache 2.44.0

An LSP, formatter, and linter for Markdown, Quarto, and R Markdown
# 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
```