Skip to content

Commit

Permalink
Merge pull request #172 from Edirom/issue-168
Browse files Browse the repository at this point in the history
fix HTML output of timeline descriptions
  • Loading branch information
daniel-jettka authored Oct 20, 2023
2 parents 254ab62 + 1b904ff commit 056f814
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions style/mei_to_html.css
Original file line number Diff line number Diff line change
Expand Up @@ -538,3 +538,7 @@ a:hover.help span.comment {
}

}

.history.timeline p:first-child {
margin-top: 0px;
}
4 changes: 2 additions & 2 deletions style/mei_to_html.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,7 @@

<!-- history time line -->
<xsl:for-each select="m:eventList[@type='history' and m:event[//text()]]">
<table>
<table class="history timeline">
<xsl:for-each select="m:event[//text()]">
<xsl:apply-templates select="." mode="performance_details"/>
</xsl:for-each>
Expand Down Expand Up @@ -1643,7 +1643,7 @@
<xsl:text>). </xsl:text>
</xsl:if>

<xsl:for-each select="m:desc[text()]">
<xsl:for-each select="m:desc[.//text()]">
<xsl:apply-templates/>
<xsl:text> </xsl:text>
</xsl:for-each>
Expand Down

0 comments on commit 056f814

Please sign in to comment.