aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/generate-xp-features-shortlist.nix
blob: 30e211c96b4e7dc8175e7b52406c32fa17660db3 (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.md#xp-feature-${name})
    '';
in xps: indent "  " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))