summaryrefslogtreecommitdiffstats
path: root/nixos/lib
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-09-01 15:12:36 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2020-09-02 00:42:51 +0200
commit3f8a3246f409513653a9e8739c69371af3e9f7b0 (patch)
tree949223d4e01b9c5d4133555a5ee7db68476e8da5 /nixos/lib
parentbc62423a8733e0629600a8dbeb72f94a694cf14f (diff)
nixos/lib/make-options-doc: remove loaOf subs
Remove the substitution for the <name?> placeholder used by loaOf, now that the type has been deprecated.
Diffstat (limited to 'nixos/lib')
-rw-r--r--nixos/lib/make-options-doc/options-to-docbook.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/make-options-doc/options-to-docbook.xsl b/nixos/lib/make-options-doc/options-to-docbook.xsl
index 72ac89d4ff62..18d19fddaca2 100644
--- a/nixos/lib/make-options-doc/options-to-docbook.xsl
+++ b/nixos/lib/make-options-doc/options-to-docbook.xsl
@@ -20,7 +20,7 @@
<title>Configuration Options</title>
<variablelist xml:id="configuration-variable-list">
<xsl:for-each select="attrs">
- <xsl:variable name="id" select="concat('opt-', str:replace(str:replace(str:replace(str:replace(attr[@name = 'name']/string/@value, '*', '_'), '&lt;', '_'), '>', '_'), '?', '_'))" />
+ <xsl:variable name="id" select="concat('opt-', str:replace(str:replace(str:replace(attr[@name = 'name']/string/@value, '*', '_'), '&lt;', '_'), '>', '_'))" />
<varlistentry>
<term xlink:href="#{$id}">
<xsl:attribute name="xml:id"><xsl:value-of select="$id"/></xsl:attribute>