blob: ea8bf8d4919cd6ae2fae37702caa396bc3926858 (
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)))
|