We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98ccfa3 commit ef46eb0Copy full SHA for ef46eb0
devhelp2qch.xsl
@@ -75,6 +75,10 @@
75
<xsl:template match="devhelp:keyword">
76
<xsl:if test="@name != ''">
77
<keyword name="{@name}" id="{@name}" ref="{@link}" />
78
+ <!-- Add an additional id for libc++ users -->
79
+ <xsl:if test="starts-with(@name, 'std::')">
80
+ <keyword name="{@name}" id="{concat('std::___LIBCPP_ABI_VERSION::', substring(@name, 6))}" ref="{@link}" />
81
+ </xsl:if>
82
</xsl:if>
83
</xsl:template>
84
0 commit comments