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