File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
docs/manual/release-notes
modules/plugins/languages Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 165165- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
166166 `languages.lua`.
167167
168+ - Added [`mdformat`](https://mdformat.rtfd.io/) support to `languages.python`.
169+
168170- Added XML syntax highlighting, LSP support and formatting
169171
170172- Added [tera](https://keats.github.io/tera/) language support (syntax
Original file line number Diff line number Diff line change 55 ...
66} : let
77 inherit ( builtins ) attrNames ;
8- inherit ( lib . meta ) getExe ;
8+ inherit ( lib . meta ) getExe getExe' ;
99 inherit ( lib . modules ) mkIf mkMerge ;
1010 inherit ( lib . options ) mkEnableOption mkOption ;
1111 inherit ( lib . types ) bool enum listOf str nullOr ;
5555 prettierd = {
5656 command = getExe pkgs . prettierd ;
5757 } ;
58+ mdformat = {
59+ command = getExe' ( pkgs . python313Packages . python . withPackages ( p :
60+ with p ; [
61+ mdformat
62+ mdformat-gfm
63+ mdformat-frontmatter
64+ ] ) ) "mdformat" ;
65+ } ;
5866 } ;
5967 defaultDiagnosticsProvider = [ "markdownlint-cli2" ] ;
6068 diagnosticsProviders = {
You can’t perform that action at this time.
0 commit comments