forked from lix-project/lix
10 lines
267 B
Nix
10 lines
267 B
Nix
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)))
|