nix-super/doc/manual/generate-xp-features-shortlist.nix

10 lines
278 B
Nix
Raw Permalink Normal View History

with builtins;
with import <nix/utils.nix>;
let
showExperimentalFeature = name: doc:
''
- [`${name}`](@docroot@/development/experimental-features.md#xp-feature-${name})
'';
in xps: indent " " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))