metanorma-ieee 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e30105998ff1bdb8feb030e1756048295e8b7325dd6afd36dd3b0f74fa6386fc
4
- data.tar.gz: 0b2aa1cfc9078b44c81cd09d820115fc8562c8623f5c0d03540a99b3c2970698
3
+ metadata.gz: 32dd0ccf082a9ef30c9aef792ec0c98533523d3c54bf873564478a727d396a43
4
+ data.tar.gz: 831a2fca2d03d3493daa99371a9124ffb14f2fd4e03e37019354f202966e5b02
5
5
  SHA512:
6
- metadata.gz: 55563585bc4991c8a85ad3c4b2e3933d12269a7d3423722850c7086033ff748aa9bacb23aa275f343afecfc4086064327613ebaa5459ceea9ecb0384dc7168d5
7
- data.tar.gz: d7ea66eeb48f9dbd229ce53d106d0a49622cb664cacab9b41b6bc47d4d21646bbf2948ea4b0df8358763e53e46d9e9d0c67866a697d3f946a06676043fe44913
6
+ metadata.gz: 661ebe1958dae55aca0edb8ff95be50fe8d10562ee324b6a6e3c37a4ca45eaeac29a12ac22f6260ce70e628144b6ef656ed6602105354da5d3b2bb3a4f382fee
7
+ data.tar.gz: c7f7a41881e7866b5b804ebeae35229e175e749d71faf45e5b34c0a27d8fb70859dead0832f64b1753ccfa5dcd9594c435089b0bf37889040b97d7a2ec3beadc
@@ -11,7 +11,7 @@ module IsoDoc
11
11
  def initialize(options)
12
12
  @libdir = File.dirname(__FILE__)
13
13
  super
14
- init_wp(options)
14
+ init_wp(options.dup)
15
15
  end
16
16
 
17
17
  def init_wp(options)
@@ -81,7 +81,9 @@ module Metanorma
81
81
  end
82
82
 
83
83
  def presentation_xml_converter(node)
84
- IsoDoc::IEEE::PresentationXMLConvert.new(html_extract_attributes(node))
84
+ IsoDoc::IEEE::PresentationXMLConvert
85
+ .new(html_extract_attributes(node)
86
+ .merge(output_formats: ::Metanorma::IEEE::Processor.new.output_formats))
85
87
  end
86
88
 
87
89
  def html_converter(node)
@@ -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.2.5 -->
20
+ <!-- VERSION v1.2.6 -->
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">
@@ -1013,6 +1013,14 @@
1013
1013
  </oneOrMore>
1014
1014
  </element>
1015
1015
  </define>
1016
+ <define name="BasicBlock" combine="choice">
1017
+ <ref name="columnbreak"/>
1018
+ </define>
1019
+ <define name="columnbreak">
1020
+ <element name="columnbreak">
1021
+ <empty/>
1022
+ </element>
1023
+ </define>
1016
1024
  <define name="MultilingualRenderingType">
1017
1025
  <choice>
1018
1026
  <value>common</value>
@@ -34,6 +34,7 @@ module Metanorma
34
34
  end
35
35
 
36
36
  def output(isodoc_node, inname, outname, format, options = {})
37
+ options_preprocess(options)
37
38
  case format
38
39
  when :html
39
40
  IsoDoc::IEEE::HtmlConvert.new(options).convert(inname, isodoc_node,
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module IEEE
3
- VERSION = "1.1.3".freeze
3
+ VERSION = "1.1.4".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-ieee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-09 00:00:00.000000000 Z
11
+ date: 2023-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-standoc