@wenyan-md/core 1.0.13 → 1.0.15

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.
@@ -1,183 +0,0 @@
1
- const n = `/*
2
- * Typora Theme - Purple / Author - hliu202
3
- * https://github.com/hliu202/typora-purple-theme
4
- */
5
-
6
- :root {
7
- --title-color: #8064a9;
8
- --text-color: #444444;
9
- --link-color: #2aa899;
10
- --code-color: #745fb5;
11
- --shadow-color: #eee;
12
- --border-quote: rgba(116, 95, 181, 0.2);
13
- --border: #e7e7e7;
14
- --link-bottom: #bbb;
15
- --shadow: 3px 3px 10px var(--shadow-color);
16
- --inline-code-bg: #f4f2f9;
17
- --header-weight: normal;
18
- }
19
- #wenyan {
20
- font-family: var(--sans-serif-font);
21
- color: var(--text-color);
22
- line-height: 1.75;
23
- font-size: 16px;
24
- }
25
- #wenyan a {
26
- word-wrap: break-word;
27
- border-bottom: 1px solid var(--link-bottom);
28
- color: var(--link-color);
29
- text-decoration: none;
30
- }
31
- #wenyan h1,
32
- #wenyan h2,
33
- #wenyan h3,
34
- #wenyan h4,
35
- #wenyan h5,
36
- #wenyan h6 {
37
- margin: 1.2em 0 1em;
38
- padding: 0px;
39
- font-weight: var(--header-weight);
40
- color: var(--title-color);
41
- font-family: var(--sans-serif-font);
42
- }
43
- #wenyan h1 {
44
- text-align: center;
45
- }
46
- #wenyan h1::after {
47
- content: "";
48
- display: block;
49
- margin: 0.2em auto 0;
50
- width: 6em;
51
- height: 2px;
52
- border-bottom: 2px solid var(--title-color);
53
- }
54
- #wenyan h2 {
55
- padding-left: 0.4em;
56
- border-left: 0.4em solid var(--title-color);
57
- border-bottom: 1px solid var(--title-color);
58
- }
59
- #wenyan h1 {
60
- font-size: 1.5em;
61
- }
62
- #wenyan h2 {
63
- font-size: 1.3em;
64
- }
65
- #wenyan h3 {
66
- font-size: 1.2em;
67
- }
68
- #wenyan h4 {
69
- font-size: 1.2em;
70
- }
71
- #wenyan h5 {
72
- font-size: 1.2em;
73
- }
74
- #wenyan h6 {
75
- font-size: 1.2em;
76
- }
77
- #wenyan p,
78
- #wenyan ul,
79
- #wenyan ol {
80
- margin: 1em 0.8em;
81
- }
82
- #wenyan hr {
83
- margin: 1.5em auto;
84
- border-top: 1px solid var(--border);
85
- }
86
- #wenyan li > ol,
87
- #wenyan li > ul {
88
- margin: 0 0;
89
- }
90
- #wenyan ul,
91
- #wenyan ol {
92
- padding-left: 2em;
93
- }
94
- #wenyan ol li,
95
- #wenyan ul li {
96
- padding-left: 0.1em;
97
- }
98
- #wenyan blockquote {
99
- margin: 0;
100
- border-left: 0.3em solid var(--border-quote);
101
- padding-left: 1em;
102
- }
103
- #wenyan table {
104
- border-collapse: collapse;
105
- margin: 1.4em auto;
106
- max-width: 100%;
107
- table-layout: fixed;
108
- text-align: left;
109
- overflow: auto;
110
- display: table;
111
- word-wrap: break-word;
112
- word-break: break-all;
113
- }
114
- #wenyan table td,
115
- #wenyan table th {
116
- font-size: 0.75em;
117
- padding: 9px 12px;
118
- line-height: 22px;
119
- color: #222;
120
- border: 1px solid var(--border-quote);
121
- vertical-align: top;
122
- }
123
- #wenyan table th {
124
- font-weight: bold;
125
- color: var(--title-color);
126
- background-color: var(--inline-code-bg);
127
- }
128
- #wenyan strong {
129
- padding: 0 2px;
130
- font-weight: bold;
131
- }
132
- #wenyan p code {
133
- padding: 2px 4px;
134
- border-radius: 0.3em;
135
- font-family: var(--monospace-font);
136
- font-size: 0.9em;
137
- color: var(--code-color);
138
- background-color: var(--inline-code-bg);
139
- margin: 0 2px;
140
- }
141
- #wenyan img {
142
- max-width: 100%;
143
- height: auto;
144
- margin: 0 auto;
145
- display: block;
146
- }
147
- #wenyan pre {
148
- border-radius: 5px;
149
- line-height: 2;
150
- margin: 1em 0.5em;
151
- padding: .5em;
152
- box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;
153
- }
154
- #wenyan pre code {
155
- display: block;
156
- overflow-x: auto;
157
- margin: .5em;
158
- padding: 0;
159
- font-family: var(--monospace-font);
160
- }
161
- #wenyan .footnote {
162
- color: var(--code-color);
163
- background-color: var(--inline-code-bg);
164
- }
165
- #wenyan #footnotes p {
166
- display: flex;
167
- margin: 0;
168
- font-size: 0.9em;
169
- }
170
- #wenyan .footnote-num {
171
- display: inline;
172
- width: 10%;
173
- }
174
- #wenyan .footnote-txt {
175
- display: inline;
176
- width: 90%;
177
- word-wrap: break-word;
178
- word-break: break-all;
179
- }
180
- `;
181
- export {
182
- n as default
183
- };
@@ -1,168 +0,0 @@
1
- const n = `/*
2
- * Typora Theme - Rainbow / Author - thezbm
3
- * https://github.com/thezbm/typora-theme-rainbow
4
- */
5
-
6
- :root {
7
- --h-border-color: rgb(255, 191, 191);
8
- --h-bg-color: rgb(255, 232, 232);
9
- --table-border-color: rgb(255, 235, 211);
10
- --th-bg-color: rgb(255, 243, 228);
11
- --tr-bg-color: rgb(255, 249, 242);
12
- --code-bg-color: rgb(247, 247, 247);
13
- --block-shadow: 0.15em 0.15em 0.5em rgb(150, 150, 150);
14
- }
15
- #wenyan {
16
- font-family: var(--sans-serif-font);
17
- line-height: 1.75;
18
- font-size: 16px;
19
- }
20
- #wenyan p,
21
- #wenyan pre {
22
- margin: 1em 0;
23
- }
24
- #wenyan h1,
25
- #wenyan h2,
26
- #wenyan h3,
27
- #wenyan h4,
28
- #wenyan h5,
29
- #wenyan h6 {
30
- margin: 1.2em 0 1em;
31
- padding: 0px;
32
- font-weight: bold;
33
- }
34
- #wenyan h1 {
35
- font-size: 1.5em;
36
- text-align: center;
37
- text-shadow: 0.15em 0.15em 0.3em rgb(187, 187, 187);
38
- }
39
- #wenyan h2 {
40
- font-size: 1.3em;
41
- background-color: var(--h-bg-color);
42
- padding-left: 1em;
43
- padding-right: 1em;
44
- border-left: 0.5em solid var(--h-border-color);
45
- border-radius: 0.4em;
46
- display: inline-block;
47
- }
48
- #wenyan h3 {
49
- font-size: 1.3em;
50
- text-decoration: underline double var(--h-border-color);
51
- -webkit-text-decoration: underline double var(--h-border-color);
52
- text-decoration-thickness: 0.15em;
53
- }
54
- #wenyan h4 {
55
- font-size: 1.2em;
56
- text-decoration: underline dotted var(--h-border-color);
57
- -webkit-text-decoration: underline dotted var(--h-border-color);
58
- text-decoration-thickness: 0.2em;
59
- }
60
- #wenyan table {
61
- border-collapse: collapse;
62
- border: 0.25em solid var(--table-border-color);
63
- margin: 1.4em auto;
64
- max-width: 100%;
65
- table-layout: fixed;
66
- text-align: left;
67
- overflow: auto;
68
- display: table;
69
- word-wrap: break-word;
70
- word-break: break-all;
71
- }
72
- #wenyan table th {
73
- background-color: var(--th-bg-color);
74
- }
75
- #wenyan table th,
76
- #wenyan table td {
77
- font-size: 0.75em;
78
- text-align: center;
79
- border: 0.13em dashed var(--table-border-color);
80
- padding: 0.5em;
81
- padding: 9px 12px;
82
- line-height: 22px;
83
- vertical-align: top;
84
- }
85
- #wenyan table tr:nth-child(even) {
86
- background-color: var(--tr-bg-color);
87
- }
88
- #wenyan blockquote {
89
- font-size: 0.9em;
90
- margin: 0 1em;
91
- color: rgb(102, 102, 102);
92
- border-left: 0.25em solid rgb(169, 202, 255);
93
- padding: 0.5em 1em 0.6em 1em;
94
- }
95
- #wenyan blockquote::before {
96
- display: block;
97
- height: 2em;
98
- width: 1.5em;
99
- content: "🌈";
100
- font-size: 1.2em;
101
- }
102
- #wenyan blockquote p {
103
- margin: 0;
104
- }
105
- #wenyan hr {
106
- margin-top: 2em;
107
- margin-bottom: 2em;
108
- background-color: rgb(226, 226, 226);
109
- height: 0.13em;
110
- border: 0;
111
- }
112
- #wenyan pre {
113
- line-height: 2;
114
- padding: .5em;
115
- border-radius: 0.4em;
116
- box-shadow: var(--block-shadow);
117
- }
118
- #wenyan pre code {
119
- display: block;
120
- overflow-x: auto;
121
- margin: .5em;
122
- padding: 0;
123
- font-family: var(--monospace-font);
124
- }
125
- #wenyan p code {
126
- font-family: var(--monospace-font);
127
- margin-left: 0.25em;
128
- margin-right: 0.25em;
129
- padding: 0.05em 0.3em;
130
- background-color: var(--code-bg-color);
131
- border-radius: 0.4em;
132
- box-shadow: 0.13em 0.13em 0.26em rgb(197, 197, 197);
133
- font-size: 0.9em;
134
- }
135
- #wenyan a {
136
- word-wrap: break-word;
137
- color: rgb(31, 117, 255);
138
- }
139
- #wenyan img {
140
- max-width: 100%;
141
- height: auto;
142
- margin: 0 auto;
143
- display: block;
144
- border-radius: 5px;
145
- box-shadow: var(--block-shadow);
146
- }
147
- #wenyan .footnote {
148
- color: rgb(31, 117, 255);
149
- }
150
- #wenyan #footnotes p {
151
- display: flex;
152
- margin: 0;
153
- font-size: 0.9em;
154
- }
155
- #wenyan .footnote-num {
156
- display: inline;
157
- width: 10%;
158
- }
159
- #wenyan .footnote-txt {
160
- display: inline;
161
- width: 90%;
162
- word-wrap: break-word;
163
- word-break: break-all;
164
- }
165
- `;
166
- export {
167
- n as default
168
- };
@@ -1,11 +0,0 @@
1
- const l = `pre{background:#002b36}
2
- /*!
3
- Theme: Solarized Dark
4
- Author: Ethan Schoonover (modified by aramisgithub)
5
- License: ~ MIT (or more permissive) [via base16-schemes-source]
6
- Maintainer: @highlightjs/core-team
7
- Version: 2021.09.0
8
- */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#93a1a1;background:#002b36}.hljs ::selection,.hljs::selection{background-color:#586e75;color:#93a1a1}.hljs-comment{color:#657b83}.hljs-tag{color:#839496}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#93a1a1}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#dc322f}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#cb4b16}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#b58900}.hljs-strong{font-weight:700;color:#b58900}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#859900}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#2aa198}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#268bd2}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#6c71c4}.hljs-emphasis{color:#6c71c4;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#d33682}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}`;
9
- export {
10
- l as default
11
- };
@@ -1,11 +0,0 @@
1
- const l = `pre{background:#fdf6e3}
2
- /*!
3
- Theme: Solarized Light
4
- Author: Ethan Schoonover (modified by aramisgithub)
5
- License: ~ MIT (or more permissive) [via base16-schemes-source]
6
- Maintainer: @highlightjs/core-team
7
- Version: 2021.09.0
8
- */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#586e75;background:#fdf6e3}.hljs ::selection,.hljs::selection{background-color:#93a1a1;color:#586e75}.hljs-comment{color:#839496}.hljs-tag{color:#657b83}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#586e75}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#dc322f}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#cb4b16}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#b58900}.hljs-strong{font-weight:700;color:#b58900}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#859900}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#2aa198}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#268bd2}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#6c71c4}.hljs-emphasis{color:#6c71c4;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#d33682}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}`;
9
- export {
10
- l as default
11
- };
@@ -1,145 +0,0 @@
1
- const n = `#wenyan {
2
- font-family: var(--sans-serif-font);
3
- line-height: 1.75;
4
- }
5
- #wenyan * {
6
- box-sizing: border-box;
7
- }
8
- #wenyan h1,
9
- #wenyan h2,
10
- #wenyan h3,
11
- #wenyan h4,
12
- #wenyan h5,
13
- #wenyan h6,
14
- #wenyan p,
15
- #wenyan pre {
16
- margin: 1em 0;
17
- }
18
- #wenyan h1,
19
- #wenyan h2,
20
- #wenyan h3,
21
- #wenyan h4,
22
- #wenyan h5,
23
- #wenyan h6 {
24
- font-size: 17px;
25
- line-height: 30px;
26
- margin-top: 20px;
27
- margin-bottom: 12px;
28
- position: relative;
29
- }
30
- #wenyan h1:before,
31
- #wenyan h2:before,
32
- #wenyan h3:before,
33
- #wenyan h4:before,
34
- #wenyan h5:before,
35
- #wenyan h6:before {
36
- content: "";
37
- display: inline-block;
38
- vertical-align: 1px;
39
- width: 10px;
40
- height: 26px;
41
- margin-right: 6px;
42
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDEwIDI2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOS41IDYuNTY2NTlMNC40OTk5NCAxOS40MzI2TDAgMTkuNDMyNkw1LjAwMDA2IDYuNTY2NTlMOS41IDYuNTY2NTlaIiBmaWxsPSIjRkY0MDNBIi8+Cjwvc3ZnPgo=);
43
- background-repeat: no-repeat;
44
- background-size: cover;
45
- background-position-y: 8px;
46
- }
47
- #wenyan ul,
48
- #wenyan ol {
49
- padding-left: 1.2em;
50
- }
51
- #wenyan li {
52
- margin-left: 1.2em;
53
- }
54
- #wenyan img {
55
- max-width: 100%;
56
- height: auto;
57
- margin: 0 auto;
58
- display: block;
59
- }
60
- #wenyan table {
61
- margin-left: auto;
62
- margin-right: auto;
63
- border-collapse: collapse;
64
- table-layout: fixed;
65
- overflow: auto;
66
- border-spacing: 0;
67
- font-size: 1em;
68
- word-wrap: break-word;
69
- word-break: break-all;
70
- }
71
- #wenyan table td,
72
- #wenyan table th {
73
- height: 40px;
74
- padding: 9px 12px;
75
- line-height: 22px;
76
- color: #222;
77
- min-width: 88px;
78
- border: 1px solid #d8d8d8;
79
- vertical-align: top;
80
- }
81
- #wenyan blockquote {
82
- margin: 0;
83
- margin-bottom: 20px;
84
- padding: 0 16px;
85
- position: relative;
86
- color: #999;
87
- text-align: justify;
88
- }
89
- #wenyan blockquote:before {
90
- content: " ";
91
- left: 0;
92
- position: absolute;
93
- width: 2px;
94
- height: 100%;
95
- background: #f2f2f2;
96
- }
97
- #wenyan p code {
98
- font-family: var(--monospace-font);
99
- color: #1e6bb8;
100
- }
101
- /* 代码块 */
102
- #wenyan pre {
103
- border-radius: 3px;
104
- border: 1px solid #e8e8e8;
105
- line-height: 2;
106
- margin: 1em 0.5em;
107
- padding: .5em;
108
- }
109
- #wenyan pre code {
110
- font-family: var(--monospace-font);
111
- display: block;
112
- overflow-x: auto;
113
- margin: .5em;
114
- padding: 0;
115
- }
116
- #wenyan hr {
117
- width: 100%;
118
- height: 1px;
119
- background-color: #e8e8e8;
120
- border: none;
121
- margin: 20px 0;
122
- }
123
- /* 链接 */
124
- #wenyan a {
125
- word-wrap: break-word;
126
- color: #0069c2;
127
- }
128
- /* 脚注 */
129
- #wenyan #footnotes ul {
130
- font-size: 0.9em;
131
- margin: 0;
132
- padding-left: 1.2em;
133
- }
134
- #wenyan #footnotes li {
135
- margin: 0 0 0 1.2em;
136
- word-wrap: break-word;
137
- word-break: break-all;
138
- }
139
- #wenyan .footnote {
140
- color: #0069c2;
141
- }
142
- `;
143
- export {
144
- n as default
145
- };
@@ -1,4 +0,0 @@
1
- const l = "pre{background:#fff}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#fff;color:#000}.xml .hljs-meta{color:silver}.hljs-comment,.hljs-quote{color:#007400}.hljs-attribute,.hljs-keyword,.hljs-literal,.hljs-name,.hljs-selector-tag,.hljs-tag{color:#aa0d91}.hljs-template-variable,.hljs-variable{color:#3f6e74}.hljs-code,.hljs-meta .hljs-string,.hljs-string{color:#c41a16}.hljs-link,.hljs-regexp{color:#0e0eff}.hljs-bullet,.hljs-number,.hljs-symbol,.hljs-title{color:#1c00cf}.hljs-meta,.hljs-section{color:#643820}.hljs-built_in,.hljs-class .hljs-title,.hljs-params,.hljs-title.class_,.hljs-type{color:#5c2699}.hljs-attr{color:#836c28}.hljs-subst{color:#000}.hljs-formula{background-color:#eee;font-style:italic}.hljs-addition{background-color:#baeeba}.hljs-deletion{background-color:#ffc8bd}.hljs-selector-class,.hljs-selector-id{color:#9b703f}.hljs-doctag,.hljs-strong{font-weight:700}.hljs-emphasis{font-style:italic}";
2
- export {
3
- l as default
4
- };
@@ -1,133 +0,0 @@
1
- const n = `#wenyan {
2
- font-family: var(--sans-serif-font);
3
- line-height: 1.75;
4
- font-size: 16px;
5
- }
6
- #wenyan * {
7
- box-sizing: border-box;
8
- }
9
- #wenyan h1,
10
- #wenyan h2,
11
- #wenyan h3,
12
- #wenyan h4,
13
- #wenyan h5,
14
- #wenyan h6,
15
- #wenyan p,
16
- #wenyan pre {
17
- margin: 1em 0;
18
- }
19
- #wenyan h1,
20
- #wenyan h2 {
21
- clear: left;
22
- font-size: 1.2em;
23
- font-weight: 600;
24
- line-height: 1.5;
25
- margin-bottom: 1.16667em;
26
- margin-top: 2.33333em;
27
- }
28
- #wenyan h3,
29
- #wenyan h4,
30
- #wenyan h5,
31
- #wenyan h6 {
32
- clear: left;
33
- font-size: 1.1em;
34
- font-weight: 600;
35
- line-height: 1.5;
36
- margin-bottom: 1.27273em;
37
- margin-top: 1.90909em;
38
- }
39
- #wenyan ul,
40
- #wenyan ol {
41
- padding-left: 1.2em;
42
- }
43
- #wenyan li {
44
- margin-left: 1.2em;
45
- }
46
- #wenyan img {
47
- max-width: 100%;
48
- height: auto;
49
- margin: 0 auto;
50
- display: block;
51
- }
52
- #wenyan table {
53
- border-collapse: collapse;
54
- font-size: 15px;
55
- margin: 1.4em auto;
56
- max-width: 100%;
57
- table-layout: fixed;
58
- text-align: left;
59
- width: 100%;
60
- word-wrap: break-word;
61
- word-break: break-all;
62
- }
63
- #wenyan table th {
64
- background: #ebeced;
65
- color: #191b1f;
66
- font-weight: 500;
67
- }
68
- #wenyan table td,
69
- #wenyan table th {
70
- border: 1px solid #c4c7ce;
71
- height: 24px;
72
- line-height: 24px;
73
- padding: 3px 12px;
74
- }
75
- #wenyan blockquote {
76
- border-left: 3px solid #c4c7ce;
77
- margin: 1.5em 0;
78
- padding: 0 0 1em 1em;
79
- color: #535861;
80
- }
81
- #wenyan code {
82
- margin: 0px 2px;
83
- padding: 3px 4px;
84
- border-radius: 3px;
85
- font-family: var(--monospace-font);
86
- background-color: rgb(246, 246, 246);
87
- }
88
- #wenyan pre {
89
- word-wrap: normal;
90
- background: #f8f8fa;
91
- border-radius: 4px;
92
- line-height: 2;
93
- margin: 1em 0.5em;
94
- padding: .5em;
95
- white-space: pre;
96
- word-break: normal;
97
- }
98
- #wenyan pre code {
99
- display: block;
100
- overflow-x: auto;
101
- margin: .5em;
102
- padding: 0;
103
- }
104
- #wenyan hr {
105
- border: none;
106
- border-top: 1px solid #c4c7ce;
107
- margin: 2em auto;
108
- max-width: 100%;
109
- width: 240px;
110
- }
111
- /* 链接 */
112
- #wenyan a {
113
- word-wrap: break-word;
114
- color: #0069c2;
115
- }
116
- /* 脚注 */
117
- #wenyan #footnotes ul {
118
- font-size: 0.9em;
119
- margin: 0;
120
- padding-left: 1.2em;
121
- }
122
- #wenyan #footnotes li {
123
- margin: 0 0 0 1.2em;
124
- word-wrap: break-word;
125
- word-break: break-all;
126
- }
127
- #wenyan .footnote {
128
- color: #0069c2;
129
- }
130
- `;
131
- export {
132
- n as default
133
- };