73eb6a2a57
As requested by @fricklerhandwerk.
12 lines
246 B
Nix
12 lines
246 B
Nix
with builtins;
|
|
with import ./utils.nix;
|
|
|
|
let
|
|
showExperimentalFeature = name: doc:
|
|
squash ''
|
|
## [`${name}`]{#xp-feature-${name}}
|
|
|
|
${doc}
|
|
'';
|
|
in xps: (concatStringsSep "\n" (attrValues (mapAttrs showExperimentalFeature xps)))
|