mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
docs: swap "url" and "maintainers" in documentation
This commit is contained in:
parent
a89c8a9a97
commit
2d4ebda245
1 changed files with 1 additions and 1 deletions
|
@ -68,9 +68,9 @@ with lib; let
|
||||||
maintainers = lib.unique (options.config.meta.maintainers."${info.file}" or []);
|
maintainers = lib.unique (options.config.meta.maintainers."${info.file}" or []);
|
||||||
in
|
in
|
||||||
"# ${lib.last path}\n\n"
|
"# ${lib.last path}\n\n"
|
||||||
|
+ (lib.optionalString (info.url != null) "Url: [${info.url}](${info.url})\n\n")
|
||||||
+ (lib.optionalString (builtins.length maintainers > 0)
|
+ (lib.optionalString (builtins.length maintainers > 0)
|
||||||
"Maintainers: ${lib.concatStringsSep ", " (builtins.map (m: m.name) maintainers)}\n\n")
|
"Maintainers: ${lib.concatStringsSep ", " (builtins.map (m: m.name) maintainers)}\n\n")
|
||||||
+ (lib.optionalString (info.url != null) "Url: [${info.url}](${info.url})\n\n")
|
|
||||||
else null;
|
else null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue