Skip to content

Commit

Permalink
overline
Browse files Browse the repository at this point in the history
  • Loading branch information
glorieux-f committed Aug 23, 2024
1 parent 90ee297 commit cf8456d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docx/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ LGPL http://www.gnu.org/licenses/lgpl.html
<style level="p" name="adcitationrom" element="p" parent="quote" rend="keep"/>
<style level="p" name="adlocalcitationrom" element="p" parent="quote" rend="keep"/>
<style level="p" name="adresume" element="p" parent="argument"/>
<style level="p" name="annotationtext" element="p" parent="quote" rend="keep" attribute="type" value="story"/>
<style level="p" name="argument" element="p" parent="argument" doc="true"/>
<style level="p" name="auteur" element="byline"/>
<style level="p" name="author" element="byline"/>
Expand Down Expand Up @@ -135,6 +136,8 @@ LGPL http://www.gnu.org/licenses/lgpl.html
<style level="p" name="footnote" element="p"/><!-- in odt, used inside notes -->
<style level="p" name="footnotetext" element="note"/><!-- note as a block -->
<style level="p" name="form" element="form" parent="entryFree"/>
<style level="p" name="formula" element="formula" doc="true"/>
<style level="p" name="formulapar" element="formula"/>
<style level="p" name="fw" element="fw" doc="true"/>
<style level="p" name="genre" element="label" attribute="type" value="genus"/>
<style level="p" name="heading" element="label" attribute="type" value="head"/>
Expand Down
11 changes: 9 additions & 2 deletions tei_html/tei_flow_html.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -1060,9 +1060,8 @@ Tables
</xsl:choose>
</xsl:template>
<!--
<h2>Caractères</h2>
<h2>Char level</h2>
<p>Balises de niveau mot, à l'intérieur d'un paragraphe.</p>
<h3>HTML</h3>
Expand Down Expand Up @@ -1138,6 +1137,14 @@ Tables
</xsl:apply-templates>
</sup>
</xsl:when>
<xsl:when test="starts-with($rend, 'var')">
<var>
<xsl:call-template name="atts"/>
<xsl:apply-templates>
<xsl:with-param name="from" select="$from"/>
</xsl:apply-templates>
</var>
</xsl:when>
<!-- generated from docx, keep it ? -->
<xsl:when test="contains($rend, 'bg_')">
<xsl:variable name="after" select="substring-before(concat(substring-after($rend, 'bg_'), ' '), ' ')"/>
Expand Down

0 comments on commit cf8456d

Please sign in to comment.