forked from lix-project/lix
10 lines
264 B
Nix
10 lines
264 B
Nix
|
with builtins;
|
||
|
with import ./utils.nix;
|
||
|
|
||
|
let
|
||
|
showExperimentalFeature = name: doc:
|
||
|
''
|
||
|
- [`${name}`](@docroot@/contributing/experimental-features/${name}.md)
|
||
|
'';
|
||
|
in xps: indent " " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))
|