Fixed a bug in the engraving rendering code
Posted by mholmes on 27 Aug 2008 in Activity log
In the process of tweaking some title capitalization, we noticed that elements below the paragraph level inside annotation divs were not being rendered at all. I eventually tracked down the problem to this line of code:
<xsl:apply-templates select="@* | * | text()" />
which I had to change to this:
<xsl:apply-templates select="* | @* | text()" />
in order to get the descendant elements of the paragraph tag to render correctly.
Also acquired some new texts from the BNL, and backed up everything to rutabaga.
This entry was posted by Martin and filed under Activity log.