2023-04-05 02:57:11 +00:00
|
|
|
with builtins;
|
|
|
|
with import ./utils.nix;
|
|
|
|
|
|
|
|
let
|
2023-04-09 15:01:23 +00:00
|
|
|
showExperimentalFeature = name: doc:
|
|
|
|
squash ''
|
|
|
|
## [`${name}`]{#xp-feature-${name}}
|
2023-04-05 02:57:11 +00:00
|
|
|
|
2023-04-09 15:01:23 +00:00
|
|
|
${doc}
|
|
|
|
'';
|
|
|
|
in xps: (concatStringsSep "\n" (attrValues (mapAttrs showExperimentalFeature xps)))
|