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