aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/generate-xp-features-shortlist.nix
blob: b2095bc270c92a1fa7ab12af75e412ea52b8fa7b (plain)
1
2
3
4
5
6
7
8
9
with builtins;
with import ./utils.nix;

let
  showExperimentalFeature = name: doc:
    ''
      - [`${name}`](@docroot@/contributing/experimental-features/${name}.md)
    '';
in xps: indent "  " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))