metanorma-bipm 2.2.0 → 2.2.1

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: 5473d53c218ef9be08f8d8664f388c27684eca2af7bc86e4c501d9d922d50f64
4
- data.tar.gz: 0dd3d6d95f9e7975e3f76e00c9b486b5c97a753ce45cd1af450b82cf80ddad5b
3
+ metadata.gz: 7e4882c799316d8fa098e67957ac7ba521996f758c74c251a09c8f50d490aade
4
+ data.tar.gz: aa4302843b8f252c053f76653c9def6f73d0b9f13badd397206e70b806897dc4
5
5
  SHA512:
6
- metadata.gz: 8e9aeb4d4752a121f6dc00049988937cf6eadb7e3833e5df79d574dcb74fa1bbeff911a33e70f63bcc880cf1cf50f8f3eaf1b3099b494b78f7db299c1a71ade1
7
- data.tar.gz: 54655f2d26b574f6e8231cf945505905d733ab08512e109f9e10fa1d96622f0bf8e581099ac8d08fab8d8ddca5dca66740d95603a6b10aa1153a59d4339d3a2a
6
+ metadata.gz: 28ccb12955bdced162d84dca3b1a93c8244603187d81108eb9d9db3001a2308b04d8481bb4a7986ce459a06c0fd8d2a468e23aca8f7231c2c23d750ee1545ddc
7
+ data.tar.gz: 5ae15b413d3559a05606bbb3d163215551c4d915362c20b5344d9a92270e619d9e185ba1a7305c30a3c35011c57514140a7848659687043e3e3d40cf64591949
@@ -50,34 +50,6 @@ module IsoDoc
50
50
  super
51
51
  end
52
52
 
53
- def nonstd_bibitem(list, bibitem, ordinal, biblio)
54
- list.p **attr_code(iso_bibitem_entry_attrs(bibitem, biblio)) do |ref|
55
- ids = bibitem_ref_code(bibitem)
56
- identifiers = render_identifier(ids)
57
- if biblio then ref_entry_code(ref, ordinal, identifiers, ids)
58
- else
59
- ref << (identifiers[0] || identifiers[1])
60
- ref << " #{identifiers[1]}" if identifiers[0] && identifiers[1]
61
- end
62
- ref << " "
63
- reference_format(bibitem, ref)
64
- end
65
- end
66
-
67
- def std_bibitem_entry(list, bibitem, ordinal, biblio)
68
- list.p **attr_code(iso_bibitem_entry_attrs(bibitem, biblio)) do |ref|
69
- identifiers = render_identifier(bibitem_ref_code(bibitem))
70
- if biblio then ref_entry_code(ref, ordinal, identifiers, nil)
71
- else
72
- ref << (identifiers[0] || identifiers[1])
73
- ref << " #{identifiers[1]}" if identifiers[0] && identifiers[1]
74
- end
75
- date_note_process(bibitem, ref)
76
- ref << " "
77
- reference_format(bibitem, ref)
78
- end
79
- end
80
-
81
53
  def term_cleanup(docxml)
82
54
  @jcgm ? docxml : super
83
55
  end