panache 2.51.0

An LSP, formatter, and linter for Markdown, Quarto, and R Markdown
# Let Git auto-detect text files
* text=auto

# All test case input/expected files should use LF by default (for consistent AST across platforms)
tests/fixtures/cases/*/*.md eol=lf
tests/fixtures/cases/*/*.qmd eol=lf
tests/fixtures/cases/*/*.Rmd eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.md eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.qmd eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.Rmd eol=lf
tests/fixtures/bibtex_samples/*.bib eol=lf
crates/panache-parser/tests/fixtures/yaml-test-suite/**/in.yaml eol=lf
crates/panache-parser/tests/fixtures/pandoc-conformance/corpus/*/input.md eol=lf
crates/panache-parser/tests/fixtures/pandoc-conformance/corpus/*/expected.native eol=lf
crates/panache-formatter/tests/fixtures/yaml_corpus/**/*.yaml eol=lf

# Preserve CRLF in test cases that specifically test CRLF handling (must have CRLF line endings)
tests/fixtures/cases/crlf_*/* -text
tests/fixtures/cases/line_ending_crlf/* -text
tests/fixtures/cases/line_ending_lf/* -text
crates/panache-parser/tests/fixtures/cases/crlf_*/* -text
crates/panache-parser/tests/fixtures/cases/line_ending_crlf/* -text
crates/panache-parser/tests/fixtures/cases/line_ending_lf/* -text
tests/fixtures/bibtex_samples/bibtex_crlf.bib -text

# CST fixtures (parser-internal) should use LF endings
tests/fixtures/bibtex_samples/*.cst eol=lf

# Generated schema must use LF — test compares against bytes produced with `\n`
panache.schema.json eol=lf

# Vendored IANA URI scheme registry — kept byte-for-byte as fetched (CRLF) so
# scripts/update-uri-schemes.sh reproduces it exactly with no processing.
crates/panache-parser/src/parser/inlines/uri-schemes.csv -text linguist-vendored

# Other test cases can use LF (the default for most projects)
# Individual test cases can override if needed