mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
cex: use the bullet in HTML
* data/xslt/xml2xhtml.xsl: here.
This commit is contained in:
5
TODO
5
TODO
@@ -41,6 +41,11 @@ Use "•" instead of ".".
|
|||||||
Not all the conflicts have counterexamples generated. See the "break"s in
|
Not all the conflicts have counterexamples generated. See the "break"s in
|
||||||
counterexample_report_state.
|
counterexample_report_state.
|
||||||
|
|
||||||
|
*** point, dot
|
||||||
|
We have too many names. In XML we use "point", in C "dot". A traditional
|
||||||
|
more accurate name of "item" is "pointed rule", so we should probably prefer
|
||||||
|
"point" to "dot".
|
||||||
|
|
||||||
** Bistromathic
|
** Bistromathic
|
||||||
- Hitting tab on a line with a syntax error is ugly
|
- Hitting tab on a line with a syntax error is ugly
|
||||||
|
|
||||||
|
|||||||
@@ -531,12 +531,12 @@
|
|||||||
<xsl:for-each select="rhs/*">
|
<xsl:for-each select="rhs/*">
|
||||||
<xsl:if test="position() = $point + 1">
|
<xsl:if test="position() = $point + 1">
|
||||||
<xsl:text> </xsl:text>
|
<xsl:text> </xsl:text>
|
||||||
<span class="point">.</span>
|
<span class="point">•</span>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
<xsl:apply-templates select="."/>
|
<xsl:apply-templates select="."/>
|
||||||
<xsl:if test="position() = last() and position() = $point">
|
<xsl:if test="position() = last() and position() = $point">
|
||||||
<xsl:text> </xsl:text>
|
<xsl:text> </xsl:text>
|
||||||
<span class="point">.</span>
|
<span class="point">•</span>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<xsl:if test="$lookaheads">
|
<xsl:if test="$lookaheads">
|
||||||
|
|||||||
Reference in New Issue
Block a user