You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we have a table, the <head> of the table is currently displaying twice. See https://cdrhdev1.unl.edu/chesnutt/item/ccda.corr01888 ("Dr." and "Cr." are only supposed to appear once). We need to remove one of those.
The text was updated successfully, but these errors were encountered:
The Chesnutt XSLT has a template that overrides Datura's <head> formatting, such that it wasn't ignoring head elements that were table headers. Meanwhile, Datura has a template for table/head, so we were getting duplicates.
There are probably more elegant ways to handle this, but I wanted to be as minimally invasive as possible... I added an <xsl:when> to the custom template: if its direct parent is <table>, the custom template just doesn't add anything. I also tested to make sure it only applies to table heads, and not headings within other table cells.
When we have a table, the
<head>
of the table is currently displaying twice. See https://cdrhdev1.unl.edu/chesnutt/item/ccda.corr01888 ("Dr." and "Cr." are only supposed to appear once). We need to remove one of those.The text was updated successfully, but these errors were encountered: