summary: Add symbol refs to breakdown
This should be extremely helpful in understanding the breakdown. And convenient.master
parent
c98ece9d68
commit
43190ef6af
|
@ -1823,6 +1823,24 @@
|
|||
</span>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="@name">
|
||||
<xsl:variable name="name" select="@name" />
|
||||
<xsl:variable name="sym"
|
||||
select="/lv:*/preproc:symtable
|
||||
/preproc:sym[ @name=$name ]" />
|
||||
|
||||
<xsl:variable name="ref"
|
||||
select="if ( $sym/@parent ) then
|
||||
$sym/@parent
|
||||
else
|
||||
$name" />
|
||||
|
||||
<xsl:text> </xsl:text>
|
||||
<a href="#{$ref}" class="sym-ref sym-{$sym/@type}">
|
||||
<xsl:value-of select="$name" />
|
||||
</a>
|
||||
</xsl:if>
|
||||
</legend>
|
||||
|
||||
<xsl:apply-templates select="$c" mode="ultra-breakdown-equ" />
|
||||
|
|
Loading…
Reference in New Issue