metanorma-un 0.12.13 → 0.12.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ac3ff2550d6d6fdd944bce56ca13356d13f0edda10a94f763ed1d4f3534d354
4
- data.tar.gz: f9ff7cc1b492be2dd88aac32210cf71dfe5816e298fbee94f0982b3a3cfdfd8a
3
+ metadata.gz: 608ff96a451a25fcf3dbd20023d7c3ce1d5e68fa0a7f0d4950698879919525dd
4
+ data.tar.gz: d37eb52c955f549428383103337e7ee8ed48c45ff540090225c1d0ce67b5c305
5
5
  SHA512:
6
- metadata.gz: 96da9243fdbaf0c63e1979802c276395ee6114fa73d03965dc9e0cce8cc3d8090d95db9d1670ff7a67ef195e7fd7cab0134dfa2921ba11d398e46fb73adbba37
7
- data.tar.gz: 8414dafec2bdca98f7e63a0ae7bed378ee95726bf321727d3dd2676f50ce35ddefabd063f71b21cf76e48d40970d6d2f0af3a3a6104e97c979a94fce166437e9
6
+ metadata.gz: 64f84bcabd48d7ca9c4d67d91158dc6ad66cd001df767e4e901207516a383e94ceee48be0ba65f9f786f65c1fe1d769e816d1f4e6713a32ad7bb3f927cdb3664
7
+ data.tar.gz: ddccafd416bc040e09b637632247081fcadc9d19e8d2bb6fdc42f8b071d8342566700cbee0b6b985d5373a27a2427bcceee61707f0350a423b8cac9e245b8009
@@ -8588,8 +8588,11 @@
8588
8588
  </xsl:template>
8589
8589
 
8590
8590
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8591
+ <xsl:param name="element"/>
8591
8592
  <xsl:copy>
8592
- <xsl:apply-templates mode="contents_item"/>
8593
+ <xsl:apply-templates mode="contents_item">
8594
+ <xsl:with-param name="element" select="$element"/>
8595
+ </xsl:apply-templates>
8593
8596
  </xsl:copy>
8594
8597
  </xsl:template>
8595
8598
 
@@ -8656,7 +8659,10 @@
8656
8659
 
8657
8660
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8658
8661
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8659
- <xsl:apply-templates mode="contents_item"/>
8662
+ <xsl:param name="element"/>
8663
+ <xsl:apply-templates mode="contents_item">
8664
+ <xsl:with-param name="element" select="$element"/>
8665
+ </xsl:apply-templates>
8660
8666
  </xsl:template>
8661
8667
 
8662
8668
  <!-- =============== -->
@@ -8588,8 +8588,11 @@
8588
8588
  </xsl:template>
8589
8589
 
8590
8590
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8591
+ <xsl:param name="element"/>
8591
8592
  <xsl:copy>
8592
- <xsl:apply-templates mode="contents_item"/>
8593
+ <xsl:apply-templates mode="contents_item">
8594
+ <xsl:with-param name="element" select="$element"/>
8595
+ </xsl:apply-templates>
8593
8596
  </xsl:copy>
8594
8597
  </xsl:template>
8595
8598
 
@@ -8656,7 +8659,10 @@
8656
8659
 
8657
8660
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8658
8661
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8659
- <xsl:apply-templates mode="contents_item"/>
8662
+ <xsl:param name="element"/>
8663
+ <xsl:apply-templates mode="contents_item">
8664
+ <xsl:with-param name="element" select="$element"/>
8665
+ </xsl:apply-templates>
8660
8666
  </xsl:template>
8661
8667
 
8662
8668
  <!-- =============== -->
@@ -8687,8 +8687,11 @@
8687
8687
  </xsl:template>
8688
8688
 
8689
8689
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8690
+ <xsl:param name="element"/>
8690
8691
  <xsl:copy>
8691
- <xsl:apply-templates mode="contents_item"/>
8692
+ <xsl:apply-templates mode="contents_item">
8693
+ <xsl:with-param name="element" select="$element"/>
8694
+ </xsl:apply-templates>
8692
8695
  </xsl:copy>
8693
8696
  </xsl:template>
8694
8697
 
@@ -8755,7 +8758,10 @@
8755
8758
 
8756
8759
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8757
8760
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8758
- <xsl:apply-templates mode="contents_item"/>
8761
+ <xsl:param name="element"/>
8762
+ <xsl:apply-templates mode="contents_item">
8763
+ <xsl:with-param name="element" select="$element"/>
8764
+ </xsl:apply-templates>
8759
8765
  </xsl:template>
8760
8766
 
8761
8767
  <!-- =============== -->
@@ -17,7 +17,7 @@
17
17
  these elements; we just want one namespace for any child grammars
18
18
  of this.
19
19
  -->
20
- <!-- VERSION v1.3.2 -->
20
+ <!-- VERSION v1.3.3 -->
21
21
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
22
22
  <include href="reqt.rng"/>
23
23
  <include href="basicdoc.rng">
@@ -331,9 +331,9 @@
331
331
  <zeroOrMore>
332
332
  <ref name="table-note"/>
333
333
  </zeroOrMore>
334
- <optional>
334
+ <zeroOrMore>
335
335
  <ref name="source"/>
336
- </optional>
336
+ </zeroOrMore>
337
337
  </define>
338
338
  <define name="FigureAttr">
339
339
  <optional>
@@ -380,9 +380,9 @@
380
380
  <zeroOrMore>
381
381
  <ref name="note"/>
382
382
  </zeroOrMore>
383
- <optional>
383
+ <zeroOrMore>
384
384
  <ref name="source"/>
385
- </optional>
385
+ </zeroOrMore>
386
386
  </define>
387
387
  <define name="source">
388
388
  <element name="source">
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module UN
3
- VERSION = "0.12.13".freeze
3
+ VERSION = "0.12.14".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-un
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.13
4
+ version: 0.12.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-08 00:00:00.000000000 Z
11
+ date: 2024-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: iso-639