poxy 0.17.0__py3-none-any.whl → 0.17.2__py3-none-any.whl
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.
- poxy/css/m-theme-light.css +2 -2
- poxy/fixers.py +91 -57
- poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css +35 -35
- poxy/generated/emoji.json +235 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 +0 -0
- poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2 +0 -0
- poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2 +0 -0
- poxy/generated/poxy.css +33 -22
- poxy/mcss/css/m-components.css +21 -10
- poxy/mcss/plugins/latex2svg.py +22 -9
- poxy/project.py +6 -2
- poxy/run.py +5 -22
- poxy/version.txt +1 -1
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/METADATA +12 -1
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/RECORD +31 -31
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/LICENSE.txt +0 -0
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/WHEEL +0 -0
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/entry_points.txt +0 -0
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/top_level.txt +0 -0
- {poxy-0.17.0.dist-info → poxy-0.17.2.dist-info}/zip-safe +0 -0
poxy/css/m-theme-light.css
CHANGED
@@ -126,7 +126,7 @@
|
|
126
126
|
--success-filled-background-color: hsl(var(--success-hue), calc(var(--success-saturation) * 0.9), calc(var(--success-luminosity) * 1.8));
|
127
127
|
--success-filled-link-color: hsl(var(--success-hue), calc(var(--success-saturation) * 0.8), 40%);
|
128
128
|
--success-filled-link-active-color: var(--success-filled-color);
|
129
|
-
|
129
|
+
|
130
130
|
--warning-hue: 53;
|
131
131
|
--warning-saturation: 50%;
|
132
132
|
--warning-luminosity: 44%;
|
@@ -164,7 +164,7 @@
|
|
164
164
|
--dim-link-color: #292929;
|
165
165
|
--dim-link-active-color: hsl(var(--dim-hue), var(--dim-saturation), calc(var(--dim-luminosity) * 0.7));
|
166
166
|
--dim-filled-color: #656565;
|
167
|
-
--dim-filled-background-color: #
|
167
|
+
--dim-filled-background-color: #d3d3d3;
|
168
168
|
--dim-filled-link-color: #292929;
|
169
169
|
--dim-filled-link-active-color: #7c7c7c;
|
170
170
|
--dim-button-active-color: #292929;
|
poxy/fixers.py
CHANGED
@@ -11,6 +11,7 @@ import html
|
|
11
11
|
|
12
12
|
from bs4 import NavigableString
|
13
13
|
from trieregex import TrieRegEx
|
14
|
+
from typing import Tuple, Union
|
14
15
|
|
15
16
|
from . import soup
|
16
17
|
from .project import Context
|
@@ -843,6 +844,10 @@ class Links(HTMLFixer):
|
|
843
844
|
|
844
845
|
def __call__(self, context: Context, doc: soup.HTMLDocument, path: Path):
|
845
846
|
changed = False
|
847
|
+
|
848
|
+
elems_with_ids = [e for e in doc.body(id=True) if e['id'] is not None and len(e['id'])]
|
849
|
+
elems_with_ids = {e['id']: e for e in elems_with_ids}
|
850
|
+
|
846
851
|
for anchor in doc.body('a', href=True):
|
847
852
|
# make sure internal links to #ids on the same page don't get treated as external links
|
848
853
|
# (some versions of doxygen did this with @ref)
|
@@ -918,19 +923,20 @@ class Links(HTMLFixer):
|
|
918
923
|
if (
|
919
924
|
is_mdoc
|
920
925
|
and anchor['href'].startswith(r'#')
|
921
|
-
and (len(anchor['href']) == 1 or
|
926
|
+
and (len(anchor['href']) == 1 or anchor['href'][1:] not in elems_with_ids)
|
922
927
|
):
|
923
928
|
changed = True
|
924
929
|
soup.remove_class(anchor, 'm-doc')
|
925
930
|
soup.add_class(anchor, 'm-doc-self')
|
926
931
|
anchor['href'] = '#'
|
927
|
-
parent_with_id = anchor.find_parent(id=self.__internal_doc_id)
|
932
|
+
parent_with_id = anchor.find_parent(id=self.__internal_doc_id, cutoff=doc.body)
|
928
933
|
if parent_with_id is None:
|
929
|
-
parent_with_id = anchor.find_parent((r'dt', r'tr'), id=False)
|
934
|
+
parent_with_id = anchor.find_parent((r'dt', r'tr'), id=False, cutoff=doc.body)
|
930
935
|
if parent_with_id is not None:
|
931
936
|
parent_with_id['id'] = sha256(parent_with_id.get_text())
|
937
|
+
elems_with_ids[parent_with_id['id']] = parent_with_id
|
932
938
|
if parent_with_id is None:
|
933
|
-
parent_with_id = anchor.find_parent(id=True)
|
939
|
+
parent_with_id = anchor.find_parent(id=True, cutoff=doc.body)
|
934
940
|
if parent_with_id is not None:
|
935
941
|
anchor['href'] = '#' + parent_with_id['id']
|
936
942
|
continue
|
@@ -1058,9 +1064,9 @@ class MarkdownPages(PlainTextFixer):
|
|
1058
1064
|
return text
|
1059
1065
|
|
1060
1066
|
|
1061
|
-
class
|
1067
|
+
class ReturnTypes(PlainTextFixer):
|
1062
1068
|
'''
|
1063
|
-
Fixes
|
1069
|
+
Fixes various issues with function return types
|
1064
1070
|
'''
|
1065
1071
|
|
1066
1072
|
__deduced_auto_return_type_brief = re.compile(
|
@@ -1069,8 +1075,30 @@ class DeducedAutoReturnType(PlainTextFixer):
|
|
1069
1075
|
__deduced_auto_return_type = re.compile(rf'_{WBR}_{WBR}poxy_{WBR}deduced_{WBR}auto_{WBR}return_{WBR}type')
|
1070
1076
|
|
1071
1077
|
def __call__(self, context: Context, text: str, path: Path) -> str:
|
1078
|
+
|
1079
|
+
# fix 'auto() -> auto'
|
1072
1080
|
text = self.__deduced_auto_return_type_brief.sub(r')', text)
|
1073
1081
|
text = self.__deduced_auto_return_type.sub(r'auto', text)
|
1082
|
+
|
1083
|
+
# fix missing whitespace between qualifiers
|
1084
|
+
text = re.sub(
|
1085
|
+
r'(<span\s+class="m-doc-wrap-bumper"\s*>)(const|volatile|const\s+volatile|volatile\s+const)(<a\s+class="m-doc")',
|
1086
|
+
r'\1\2 \3',
|
1087
|
+
text,
|
1088
|
+
)
|
1089
|
+
text = re.sub(
|
1090
|
+
r'\)((?:\s+(?:const|volatile|mutable|noexcept|&|&&|&|&&))*)\s*->\s*(const|volatile|const\s+volatile|volatile\s+const)(<a\s+class="m-doc")',
|
1091
|
+
r')\1 → \2 \3',
|
1092
|
+
text,
|
1093
|
+
)
|
1094
|
+
|
1095
|
+
# turn -> into →
|
1096
|
+
text = re.sub(
|
1097
|
+
r'\)((?:\s+(?:const|volatile|mutable|noexcept|&|&&|&|&&))*)\s+->',
|
1098
|
+
r')\1 → ',
|
1099
|
+
text,
|
1100
|
+
)
|
1101
|
+
|
1074
1102
|
return text
|
1075
1103
|
|
1076
1104
|
|
@@ -1112,39 +1140,41 @@ class Pygments(PlainTextFixer):
|
|
1112
1140
|
'''
|
1113
1141
|
|
1114
1142
|
def __call__(self, context: Context, text: str, path: Path) -> str:
|
1115
|
-
if re.search(r'class="[^"]*?m-code[^"]*?"', text):
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1143
|
+
if not re.search(r'class="[^"]*?m-code[^"]*?"', text):
|
1144
|
+
return None
|
1145
|
+
|
1146
|
+
# at some point pygments started adding markup to whitespace,
|
1147
|
+
# causing an awful lot of markup bloat. m.css does not style this markup
|
1148
|
+
# so we can safely strip it away.
|
1149
|
+
text = re.sub(r'<span class="w">(\s+)</span>', r'\1', text)
|
1150
|
+
|
1151
|
+
# fix numeric UDLs being treated as a separate token
|
1152
|
+
text = re.sub(
|
1153
|
+
rf'<span\s+class="(m[bfhio])"\s*>(.*?)</span><span class="n">((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})</span>', #
|
1154
|
+
r'<span class="\1">\2\3</span>',
|
1155
|
+
text,
|
1156
|
+
)
|
1127
1157
|
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1158
|
+
# fix string UDLs being treated as a separate token
|
1159
|
+
text = re.sub(
|
1160
|
+
rf'<span\s+class="s"\s*>(.*?)</span><span class="n">((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})</span>', #
|
1161
|
+
r'<span class="s">\1\2</span>',
|
1162
|
+
text,
|
1163
|
+
)
|
1134
1164
|
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1165
|
+
# hack to make some basic #ifs, #defines etc. look nice
|
1166
|
+
text = re.sub(
|
1167
|
+
r'<span\s+class="cp"\s*>(\s*#\s*(?:(?:el)?if(?:n?def)?|define|undef)\s+)([a-zA-Z_][a-zA-Z_0-9]*?)([^a-zA-Z_0-9])', #
|
1168
|
+
r'<span class="cp">\1</span><span class="fm">\2</span><span class="cp">\3',
|
1169
|
+
text,
|
1170
|
+
)
|
1141
1171
|
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1172
|
+
# hack to make basic "using XXXX = ..." directives look nice
|
1173
|
+
text = re.sub(
|
1174
|
+
r'<span\s+class="k"\s*>(\s*using\s*)</span>(\s+)<span\s+class="n"\s*>([a-zA-Z_][a-zA-Z0-9_]*?)</span>(\s+)<span\s+class="o"\s*>(\s*=\s*)</span>',
|
1175
|
+
r'<span class="k">\1</span>\2<span class="nc">\3</span>\4<span class="o">\5</span>',
|
1176
|
+
text,
|
1177
|
+
)
|
1148
1178
|
|
1149
1179
|
return text
|
1150
1180
|
|
@@ -1163,24 +1193,28 @@ class InstallSearchShim(PlainTextFixer):
|
|
1163
1193
|
)
|
1164
1194
|
|
1165
1195
|
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1196
|
+
def create_all() -> Tuple[Union[HTMLFixer, PlainTextFixer]]:
|
1197
|
+
|
1198
|
+
# order matters here!
|
1199
|
+
return (
|
1200
|
+
MarkTOC(), # html
|
1201
|
+
Pygments(),
|
1202
|
+
CodeBlocks(), # html
|
1203
|
+
Banner(), # html
|
1204
|
+
CPPModifiers1(), # html
|
1205
|
+
CPPModifiers2(), # html
|
1206
|
+
StripIncludes(), # html
|
1207
|
+
AutoDocLinks(), # html
|
1208
|
+
Links(), # html
|
1209
|
+
CustomTags(), # html
|
1210
|
+
RemoveTemplateNoise(), # html
|
1211
|
+
EmptyTags(), # html
|
1212
|
+
ImplementationDetails(),
|
1213
|
+
MarkdownPages(),
|
1214
|
+
InstallSearchShim(),
|
1215
|
+
ReturnTypes(),
|
1216
|
+
InjectSVGs(), # html
|
1217
|
+
)
|
1218
|
+
|
1219
|
+
|
1220
|
+
__all__ = ['HTMLFixer', 'PlainTextFixer', 'create_all']
|
@@ -3,7 +3,7 @@
|
|
3
3
|
font-family: 'Source Code Pro';
|
4
4
|
font-style: italic;
|
5
5
|
font-weight: 400;
|
6
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
6
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2) format('woff2');
|
7
7
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
8
8
|
}
|
9
9
|
/* cyrillic */
|
@@ -11,7 +11,7 @@
|
|
11
11
|
font-family: 'Source Code Pro';
|
12
12
|
font-style: italic;
|
13
13
|
font-weight: 400;
|
14
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
14
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2) format('woff2');
|
15
15
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
16
16
|
}
|
17
17
|
/* greek-ext */
|
@@ -19,7 +19,7 @@
|
|
19
19
|
font-family: 'Source Code Pro';
|
20
20
|
font-style: italic;
|
21
21
|
font-weight: 400;
|
22
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
22
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2) format('woff2');
|
23
23
|
unicode-range: U+1F00-1FFF;
|
24
24
|
}
|
25
25
|
/* greek */
|
@@ -27,15 +27,15 @@
|
|
27
27
|
font-family: 'Source Code Pro';
|
28
28
|
font-style: italic;
|
29
29
|
font-weight: 400;
|
30
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
31
|
-
unicode-range: U+0370-03FF;
|
30
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2) format('woff2');
|
31
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
32
32
|
}
|
33
33
|
/* vietnamese */
|
34
34
|
@font-face {
|
35
35
|
font-family: 'Source Code Pro';
|
36
36
|
font-style: italic;
|
37
37
|
font-weight: 400;
|
38
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
38
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2) format('woff2');
|
39
39
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
40
40
|
}
|
41
41
|
/* latin-ext */
|
@@ -43,15 +43,15 @@
|
|
43
43
|
font-family: 'Source Code Pro';
|
44
44
|
font-style: italic;
|
45
45
|
font-weight: 400;
|
46
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
47
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
46
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2) format('woff2');
|
47
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
48
48
|
}
|
49
49
|
/* latin */
|
50
50
|
@font-face {
|
51
51
|
font-family: 'Source Code Pro';
|
52
52
|
font-style: italic;
|
53
53
|
font-weight: 400;
|
54
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
54
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2) format('woff2');
|
55
55
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
56
56
|
}
|
57
57
|
/* cyrillic-ext */
|
@@ -59,7 +59,7 @@
|
|
59
59
|
font-family: 'Source Code Pro';
|
60
60
|
font-style: normal;
|
61
61
|
font-weight: 400;
|
62
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
62
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2');
|
63
63
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
64
64
|
}
|
65
65
|
/* cyrillic */
|
@@ -67,7 +67,7 @@
|
|
67
67
|
font-family: 'Source Code Pro';
|
68
68
|
font-style: normal;
|
69
69
|
font-weight: 400;
|
70
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
70
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2');
|
71
71
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
72
72
|
}
|
73
73
|
/* greek-ext */
|
@@ -75,7 +75,7 @@
|
|
75
75
|
font-family: 'Source Code Pro';
|
76
76
|
font-style: normal;
|
77
77
|
font-weight: 400;
|
78
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
78
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2');
|
79
79
|
unicode-range: U+1F00-1FFF;
|
80
80
|
}
|
81
81
|
/* greek */
|
@@ -83,15 +83,15 @@
|
|
83
83
|
font-family: 'Source Code Pro';
|
84
84
|
font-style: normal;
|
85
85
|
font-weight: 400;
|
86
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
87
|
-
unicode-range: U+0370-03FF;
|
86
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2');
|
87
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
88
88
|
}
|
89
89
|
/* vietnamese */
|
90
90
|
@font-face {
|
91
91
|
font-family: 'Source Code Pro';
|
92
92
|
font-style: normal;
|
93
93
|
font-weight: 400;
|
94
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
94
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2');
|
95
95
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
96
96
|
}
|
97
97
|
/* latin-ext */
|
@@ -99,15 +99,15 @@
|
|
99
99
|
font-family: 'Source Code Pro';
|
100
100
|
font-style: normal;
|
101
101
|
font-weight: 400;
|
102
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
103
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
102
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2');
|
103
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
104
104
|
}
|
105
105
|
/* latin */
|
106
106
|
@font-face {
|
107
107
|
font-family: 'Source Code Pro';
|
108
108
|
font-style: normal;
|
109
109
|
font-weight: 400;
|
110
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
110
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2');
|
111
111
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
112
112
|
}
|
113
113
|
/* cyrillic-ext */
|
@@ -115,7 +115,7 @@
|
|
115
115
|
font-family: 'Source Code Pro';
|
116
116
|
font-style: normal;
|
117
117
|
font-weight: 600;
|
118
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
118
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2');
|
119
119
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
120
120
|
}
|
121
121
|
/* cyrillic */
|
@@ -123,7 +123,7 @@
|
|
123
123
|
font-family: 'Source Code Pro';
|
124
124
|
font-style: normal;
|
125
125
|
font-weight: 600;
|
126
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
126
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2');
|
127
127
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
128
128
|
}
|
129
129
|
/* greek-ext */
|
@@ -131,7 +131,7 @@
|
|
131
131
|
font-family: 'Source Code Pro';
|
132
132
|
font-style: normal;
|
133
133
|
font-weight: 600;
|
134
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
134
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2');
|
135
135
|
unicode-range: U+1F00-1FFF;
|
136
136
|
}
|
137
137
|
/* greek */
|
@@ -139,15 +139,15 @@
|
|
139
139
|
font-family: 'Source Code Pro';
|
140
140
|
font-style: normal;
|
141
141
|
font-weight: 600;
|
142
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
143
|
-
unicode-range: U+0370-03FF;
|
142
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2');
|
143
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
144
144
|
}
|
145
145
|
/* vietnamese */
|
146
146
|
@font-face {
|
147
147
|
font-family: 'Source Code Pro';
|
148
148
|
font-style: normal;
|
149
149
|
font-weight: 600;
|
150
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
150
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2');
|
151
151
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
152
152
|
}
|
153
153
|
/* latin-ext */
|
@@ -155,15 +155,15 @@
|
|
155
155
|
font-family: 'Source Code Pro';
|
156
156
|
font-style: normal;
|
157
157
|
font-weight: 600;
|
158
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
159
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
158
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2');
|
159
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
160
160
|
}
|
161
161
|
/* latin */
|
162
162
|
@font-face {
|
163
163
|
font-family: 'Source Code Pro';
|
164
164
|
font-style: normal;
|
165
165
|
font-weight: 600;
|
166
|
-
src: url(https://fonts.gstatic.com/s/sourcecodepro/
|
166
|
+
src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2');
|
167
167
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
168
168
|
}
|
169
169
|
/* cyrillic-ext */
|
@@ -196,7 +196,7 @@
|
|
196
196
|
font-style: italic;
|
197
197
|
font-weight: 400;
|
198
198
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2');
|
199
|
-
unicode-range: U+0370-03FF;
|
199
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
200
200
|
}
|
201
201
|
/* vietnamese */
|
202
202
|
@font-face {
|
@@ -212,7 +212,7 @@
|
|
212
212
|
font-style: italic;
|
213
213
|
font-weight: 400;
|
214
214
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2');
|
215
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
215
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
216
216
|
}
|
217
217
|
/* latin */
|
218
218
|
@font-face {
|
@@ -252,7 +252,7 @@
|
|
252
252
|
font-style: italic;
|
253
253
|
font-weight: 600;
|
254
254
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2) format('woff2');
|
255
|
-
unicode-range: U+0370-03FF;
|
255
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
256
256
|
}
|
257
257
|
/* vietnamese */
|
258
258
|
@font-face {
|
@@ -268,7 +268,7 @@
|
|
268
268
|
font-style: italic;
|
269
269
|
font-weight: 600;
|
270
270
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format('woff2');
|
271
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
271
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
272
272
|
}
|
273
273
|
/* latin */
|
274
274
|
@font-face {
|
@@ -308,7 +308,7 @@
|
|
308
308
|
font-style: normal;
|
309
309
|
font-weight: 400;
|
310
310
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2');
|
311
|
-
unicode-range: U+0370-03FF;
|
311
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
312
312
|
}
|
313
313
|
/* vietnamese */
|
314
314
|
@font-face {
|
@@ -324,7 +324,7 @@
|
|
324
324
|
font-style: normal;
|
325
325
|
font-weight: 400;
|
326
326
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2');
|
327
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
327
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
328
328
|
}
|
329
329
|
/* latin */
|
330
330
|
@font-face {
|
@@ -364,7 +364,7 @@
|
|
364
364
|
font-style: normal;
|
365
365
|
font-weight: 600;
|
366
366
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2');
|
367
|
-
unicode-range: U+0370-03FF;
|
367
|
+
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
368
368
|
}
|
369
369
|
/* vietnamese */
|
370
370
|
@font-face {
|
@@ -380,7 +380,7 @@
|
|
380
380
|
font-style: normal;
|
381
381
|
font-weight: 600;
|
382
382
|
src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
|
383
|
-
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-
|
383
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
384
384
|
}
|
385
385
|
/* latin */
|
386
386
|
@font-face {
|