Skip to content
Snippets Groups Projects
Commit 116f2bc2 authored by Max-Ferdinand Zeterberg's avatar Max-Ferdinand Zeterberg
Browse files

Merge branch '18-corr-11-uncertainty' into 'master'

Resolve "corr 11: uncertainty"

Closes #18

See merge request !9
parents f79fd996 e1e335de
No related branches found
No related tags found
1 merge request!9Resolve "corr 11: uncertainty"
......@@ -326,6 +326,13 @@ hr.metamark-line.doubleLine {
}
/*::::::::::::::::::::::::::::::::::{ TEI: Transcriptional }::::::::::::::::::::::::::::::::*/
.g[data-cert="uncertain"]:after {
content: "?";
font-size: small;
vertical-align: super;
}
.surface .tei::before,
.surface .tei::after {
color: brown;
......
......@@ -64,13 +64,21 @@
<!-- LINE-PARTS -->
<xsl:template match="g">
<xsl:template match="g[not(@cert)]">
<span class="g"
id="{if(@xml:id) then (@xml:id) else ('part_'||generate-id(.))}">
<xsl:apply-templates/>
</span>
</xsl:template>
<xsl:template match="g[@cert]">
<span class="g"
data-cert="{@cert}"
id="{if(@xml:id) then (@xml:id) else ('part_'||generate-id(.))}">
<xsl:apply-templates/>
</span>
</xsl:template>
<xsl:template match="metamark[contains(@rend, 'Line') or contains(@rend, 'line')]">
<xsl:variable name="rend" select="@rend"/>
<hr class="metamark-line {$rend}" data-rend="{$rend}"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment