2024-07-13 03:24:41 +00:00
|
|
|
# Usually "experimental" or "deprecated"
|
|
|
|
kind:
|
|
|
|
# "xp" or "dp"
|
|
|
|
kindShort:
|
|
|
|
|
2023-04-06 16:24:11 +00:00
|
|
|
with builtins;
|
|
|
|
with import ./utils.nix;
|
|
|
|
|
|
|
|
let
|
2024-04-04 23:07:44 +00:00
|
|
|
showExperimentalFeature = name: doc: ''
|
2024-07-13 03:24:41 +00:00
|
|
|
- [`${name}`](@docroot@/contributing/${kind}-features.md#${kindShort}-feature-${name})
|
2024-04-04 23:07:44 +00:00
|
|
|
'';
|
|
|
|
in
|
|
|
|
xps: indent " " (concatStrings (attrValues (mapAttrs showExperimentalFeature xps)))
|