Skip to content

Commit

Permalink
nixos/lib/make-options-doc: remove loaOf subs
Browse files Browse the repository at this point in the history
Remove the substitution for the <name?> placeholder used by loaOf,
now that the type has been deprecated.
  • Loading branch information
rnhmjoj committed Sep 1, 2020
1 parent bc62423 commit 3f8a324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/lib/make-options-doc/options-to-docbook.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 3f8a324

Please sign in to comment.