metanorma-iho 0.7.0 → 0.7.2
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 +4 -4
- data/.gitignore +0 -1
- data/lib/isodoc/iho/base_convert.rb +0 -7
- data/lib/isodoc/iho/html/htmlstyle.css +35 -3
- data/lib/isodoc/iho/iho.specification.xsl +259 -179
- data/lib/isodoc/iho/iho.standard.xsl +259 -179
- data/lib/isodoc/iho/presentation_xml_convert.rb +8 -0
- data/lib/metanorma/iho/biblio-standoc.rng +1 -1
- data/lib/metanorma/iho/isodoc.rng +11 -1
- data/lib/metanorma/iho/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc3ce0e821ab3854c519838c72a4ee34a1b0c90234c80e612a8420e0301eb36d
|
4
|
+
data.tar.gz: df2b0c2467b822618caef15fb9354dc86b5149563dc921927543f85c0c73022b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 963a17e0a8d7ad5ee3b411f6f32c06952d52d5dd3ce732fc13abcb8bb092f7d9419a80758f2cba12716fbcba5e3d285a4bc4fa58155e636328fb20f3cf89c7c2
|
7
|
+
data.tar.gz: 3484aca4a58553675ac2568597a773a724f8e97b3e3d4cab8b00c6ee49e1a2f7a4e594390878708c41b226a261cc592c26153f5ba02043142f14c30c8012a5cb
|
data/.gitignore
CHANGED
@@ -9,13 +9,6 @@ module IsoDoc
|
|
9
9
|
super
|
10
10
|
end
|
11
11
|
end
|
12
|
-
|
13
|
-
def std_bibitem_entry(list, bib, ordinal, biblio)
|
14
|
-
list.p **attr_code(iso_bibitem_entry_attrs(bib, biblio)) do |ref|
|
15
|
-
prefix_bracketed_ref(ref, "[#{ordinal}]")
|
16
|
-
reference_format(bib, ref)
|
17
|
-
end
|
18
|
-
end
|
19
12
|
end
|
20
13
|
end
|
21
14
|
end
|
@@ -131,6 +131,35 @@ a.FootnoteRef + a.FootnoteRef:before {
|
|
131
131
|
color: red;
|
132
132
|
text-decoration: line-through; }
|
133
133
|
|
134
|
+
/* code highlighting with line numbers */
|
135
|
+
table.rouge-line-table td.rouge-gutter {
|
136
|
+
-moz-user-select: none;
|
137
|
+
-ms-user-select: none;
|
138
|
+
-webkit-user-select: none;
|
139
|
+
user-select: none;
|
140
|
+
padding-right: 1em; }
|
141
|
+
|
142
|
+
table.rouge-line-table td.rouge-code {
|
143
|
+
-moz-user-select: all;
|
144
|
+
-ms-user-select: all;
|
145
|
+
-webkit-user-select: all;
|
146
|
+
user-select: all; }
|
147
|
+
|
148
|
+
table.rouge-line-table,
|
149
|
+
table.rouge-line-table th,
|
150
|
+
table.rouge-line-table td {
|
151
|
+
width: auto;
|
152
|
+
border: none;
|
153
|
+
margin: 0;
|
154
|
+
padding: 0;
|
155
|
+
font-size: 100%; }
|
156
|
+
|
157
|
+
table.rouge-line-table pre {
|
158
|
+
margin: 0;
|
159
|
+
padding: 0;
|
160
|
+
overflow-x: visible;
|
161
|
+
font-size: 100%; }
|
162
|
+
|
134
163
|
#standard-band {
|
135
164
|
background-color: #0AC442; }
|
136
165
|
|
@@ -624,8 +653,11 @@ a:hover {
|
|
624
653
|
background: #fedc5b;
|
625
654
|
box-shadow: 3px 0 0 #fedc5b, -3px 0 0 #fedc5b; }
|
626
655
|
|
627
|
-
|
628
|
-
|
656
|
+
*::selection {
|
657
|
+
background: #fedc5b;
|
658
|
+
color: #05164d; }
|
659
|
+
|
660
|
+
*::-moz-selection {
|
629
661
|
background: #fedc5b;
|
630
662
|
color: #05164d; }
|
631
663
|
|
@@ -786,7 +818,7 @@ table {
|
|
786
818
|
table th, table td {
|
787
819
|
padding: 1em; }
|
788
820
|
table td.header {
|
789
|
-
font-
|
821
|
+
font-weight: 400; }
|
790
822
|
|
791
823
|
p.TableTitle {
|
792
824
|
text-align: center;
|