gitalk-react 1.0.0-beta.7 → 1.0.0
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.
- package/README-zh-CN.md +11 -8
- package/README.md +12 -8
- package/dist/gitalk-dark.css +1 -1
- package/dist/gitalk-light.css +1 -1
- package/dist/gitalk.d.ts +174 -6
- package/dist/gitalk.js +15055 -12610
- package/dist/gitalk.umd.cjs +31 -28
- package/lib/components/action.tsx +6 -6
- package/lib/components/avatar.tsx +6 -6
- package/lib/components/button.tsx +6 -6
- package/lib/components/comment-textarea.tsx +8 -6
- package/lib/components/comment.tsx +28 -9
- package/lib/components/comments-list.tsx +12 -6
- package/lib/components/meta.tsx +12 -8
- package/lib/components/svg.tsx +6 -6
- package/lib/constants/index.ts +23 -9
- package/lib/gitalk.tsx +12 -2
- package/lib/i18n/ar.json +20 -0
- package/lib/i18n/bn.json +20 -0
- package/lib/i18n/hi.json +20 -0
- package/lib/i18n/index.ts +36 -23
- package/lib/i18n/pt.json +20 -0
- package/lib/i18n/ur.json +20 -0
- package/lib/interfaces/index.ts +10 -8
- package/lib/themes/base.scss +9 -7
- package/package.json +30 -27
- /package/lib/i18n/{es-ES.json → es.json} +0 -0
package/README-zh-CN.md
CHANGED
|
@@ -19,14 +19,6 @@
|
|
|
19
19
|
- `id`:Gitalk 使用 `location.href` 作为默认值,Gitalk React 使用 `location.host + location.pathname` 作为默认值,避免预期外的查询参数。
|
|
20
20
|
- `defaultAuthor`:仍然可以使用。Gitalk React 新增了参数项 `defaultUser` 来设置评论的默认用户,保持字段命名与 Github API 一致。
|
|
21
21
|
|
|
22
|
-
## 开发中的功能
|
|
23
|
-
|
|
24
|
-
- [ ] Feature: 支持在 Gitalk React 编辑自己发表的评论。
|
|
25
|
-
- [ ] Feature: 自动折叠过长的评论,允许点击展开该评论。
|
|
26
|
-
- [ ] refactor: 逐渐移除对非必要三方库的依赖。减少构建包的体积。
|
|
27
|
-
- [ ] test: 添加自动化测试流程。提升项目的健壮性。
|
|
28
|
-
- [x] chore: 部署[预览环境](https://lolipopj.github.io/gitalk-react/)。
|
|
29
|
-
|
|
30
22
|
## 快速开始
|
|
31
23
|
|
|
32
24
|
### 安装
|
|
@@ -181,6 +173,10 @@ Github OAuth App 鉴权反向代理,支持 CORS。[为什么需要它?](http
|
|
|
181
173
|
|
|
182
174
|
当评论的高度大于 `${collapsedHeight}px` 时,自动折叠到 `${collapsedHeight}px`。
|
|
183
175
|
|
|
176
|
+
### highlightAdminComment `boolean = true`
|
|
177
|
+
|
|
178
|
+
是否高亮管理员发表的评论,高亮的评论具有额外的阴影效果。
|
|
179
|
+
|
|
184
180
|
### updateCountCallback `(count: number) => void`
|
|
185
181
|
|
|
186
182
|
评论数量更新的调用的回调方法。
|
|
@@ -287,6 +283,13 @@ yarn lint
|
|
|
287
283
|
yarn build
|
|
288
284
|
```
|
|
289
285
|
|
|
286
|
+
## 开发中的功能
|
|
287
|
+
|
|
288
|
+
- [ ] Feature: 支持在 Gitalk React 编辑自己发表的评论。
|
|
289
|
+
- [x] Feature: 支持折叠过长的评论,允许点击展开该评论。
|
|
290
|
+
- [ ] test: 添加自动化测试流程。提升项目的健壮性。
|
|
291
|
+
- [x] chore: 部署[预览环境](https://lolipopj.github.io/gitalk-react/)。
|
|
292
|
+
|
|
290
293
|
## 许可证
|
|
291
294
|
|
|
292
295
|
[MIT](./LICENSE)
|
package/README.md
CHANGED
|
@@ -19,14 +19,6 @@ Developed for modern browsers, focusing on reducing build size and enhancing dev
|
|
|
19
19
|
- `id`: Gitalk uses `location.href` as the default value, while Gitalk React uses `location.host + location.pathname` as the default value, to avoid unexpected search parameters.
|
|
20
20
|
- `defaultAuthor`: Can still be used. Gitalk React has added a new parameter `defaultUser` to set the default user for comments, keeping the field naming consistent with the GitHub API.
|
|
21
21
|
|
|
22
|
-
## Features in Development
|
|
23
|
-
|
|
24
|
-
- [ ] Feature: Support editing comments published by the user in Gitalk React.
|
|
25
|
-
- [ ] Feature: Automatically collapse overly long comments, allowing users to click to expand the comment.
|
|
26
|
-
- [ ] refactor: Gradually remove dependencies on non-essential third-party libraries to reduce build size.
|
|
27
|
-
- [ ] test: Add automated testing processes to enhance project robustness.
|
|
28
|
-
- [x] chore: Deploy [preview environment](https://lolipopj.github.io/gitalk-react/).
|
|
29
|
-
|
|
30
22
|
## Quick Start
|
|
31
23
|
|
|
32
24
|
### Installation
|
|
@@ -181,6 +173,10 @@ The default user used when the comment user does not exist.
|
|
|
181
173
|
|
|
182
174
|
When the height of the comment exceeds `${collapsedHeight}px`, it will automatically collapse to `${collapsedHeight}px`.
|
|
183
175
|
|
|
176
|
+
### highlightAdminComment `boolean = true`
|
|
177
|
+
|
|
178
|
+
Whether to highlight comments published by administrators, which have additional shadow effects.
|
|
179
|
+
|
|
184
180
|
### updateCountCallback `(count: number) => void`
|
|
185
181
|
|
|
186
182
|
Callback method invoked when updating the number of comments.
|
|
@@ -287,6 +283,14 @@ Bundle and build components:
|
|
|
287
283
|
yarn build
|
|
288
284
|
```
|
|
289
285
|
|
|
286
|
+
## Features under Development
|
|
287
|
+
|
|
288
|
+
- [ ] Feature: Support editing comments published by the user in Gitalk React.
|
|
289
|
+
- [x] Feature: Support collapse overly long comments, allowing users to click to expand the comment.
|
|
290
|
+
- [ ] refactor: Gradually remove dependencies on non-essential third-party libraries to reduce build size.
|
|
291
|
+
- [ ] test: Add automated testing processes to enhance project robustness.
|
|
292
|
+
- [x] chore: Deploy [preview environment](https://lolipopj.github.io/gitalk-react/).
|
|
293
|
+
|
|
290
294
|
## License
|
|
291
295
|
|
|
292
296
|
[MIT](./LICENSE)
|
package/dist/gitalk-dark.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.markdown-body{color-scheme:dark;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0;color:#f0f6fc;background-color:#0d1117;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .octicon{display:inline-block;fill:currentColor;vertical-align:text-bottom}.markdown-body h1:hover .anchor .octicon-link:before,.markdown-body h2:hover .anchor .octicon-link:before,.markdown-body h3:hover .anchor .octicon-link:before,.markdown-body h4:hover .anchor .octicon-link:before,.markdown-body h5:hover .anchor .octicon-link:before,.markdown-body h6:hover .anchor .octicon-link:before{width:16px;height:16px;content:" ";display:inline-block;background-color:currentColor;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.markdown-body details,.markdown-body figcaption,.markdown-body figure{display:block}.markdown-body summary{display:list-item}.markdown-body [hidden]{display:none!important}.markdown-body a{background-color:transparent;color:#4493f8;text-decoration:none}.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.markdown-body b,.markdown-body strong{font-weight:600}.markdown-body dfn{font-style:italic}.markdown-body h1{margin:.67em 0;font-weight:600;padding-bottom:.3em;font-size:2em;border-bottom:1px solid #3d444db3}.markdown-body mark{background-color:#bb800926;color:#f0f6fc}.markdown-body small{font-size:90%}.markdown-body sub,.markdown-body sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.markdown-body sub{bottom:-.25em}.markdown-body sup{top:-.5em}.markdown-body img{border-style:none;max-width:100%;box-sizing:content-box}.markdown-body code,.markdown-body kbd,.markdown-body pre,.markdown-body samp{font-family:monospace;font-size:1em}.markdown-body figure{margin:1em 2.5rem}.markdown-body hr{box-sizing:content-box;overflow:hidden;background:transparent;border-bottom:1px solid #3d444db3;height:.25em;padding:0;margin:1.5rem 0;background-color:#3d444d;border:0}.markdown-body input{font:inherit;margin:0;overflow:visible;font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body [type=button],.markdown-body [type=reset],.markdown-body [type=submit]{-webkit-appearance:button;-moz-appearance:button;appearance:button}.markdown-body [type=checkbox],.markdown-body [type=radio]{box-sizing:border-box;padding:0}.markdown-body [type=number]::-webkit-inner-spin-button,.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.markdown-body [type=search]::-webkit-search-cancel-button,.markdown-body [type=search]::-webkit-search-decoration{-webkit-appearance:none;-moz-appearance:none;appearance:none}.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.markdown-body ::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;font:inherit}.markdown-body a:hover{text-decoration:underline}.markdown-body ::placeholder{color:#9198a1;opacity:1}.markdown-body hr:before{display:table;content:""}.markdown-body hr:after{display:table;clear:both;content:""}.markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;font-variant:tabular-nums}.markdown-body td,.markdown-body th{padding:0}.markdown-body details summary{cursor:pointer}.markdown-body a:focus,.markdown-body [role=button]:focus,.markdown-body input[type=radio]:focus,.markdown-body input[type=checkbox]:focus{outline:2px solid #1f6feb;outline-offset:-2px;box-shadow:none}.markdown-body a:focus:not(:focus-visible),.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body input[type=radio]:focus:not(:focus-visible),.markdown-body input[type=checkbox]:focus:not(:focus-visible){outline:solid 1px transparent}.markdown-body a:focus-visible,.markdown-body [role=button]:focus-visible,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus-visible{outline:2px solid #1f6feb;outline-offset:-2px;box-shadow:none}.markdown-body a:not([class]):focus,.markdown-body a:not([class]):focus-visible,.markdown-body input[type=radio]:focus,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=checkbox]:focus-visible{outline-offset:0}.markdown-body kbd{display:inline-block;padding:.25rem;font:11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;line-height:10px;color:#f0f6fc;vertical-align:middle;background-color:#151b23;border:solid 1px #3d444db3;border-bottom-color:#3d444db3;border-radius:6px;box-shadow:inset 0 -1px #3d444db3}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.markdown-body h2{font-weight:600;padding-bottom:.3em;font-size:1.5em;border-bottom:1px solid #3d444db3}.markdown-body h3{font-weight:600;font-size:1.25em}.markdown-body h4{font-weight:600;font-size:1em}.markdown-body h5{font-weight:600;font-size:.875em}.markdown-body h6{font-weight:600;font-size:.85em;color:#9198a1}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0;padding:0 1em;color:#9198a1;border-left:.25em solid #3d444d}.markdown-body ul,.markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body tt,.markdown-body code,.markdown-body samp{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px;word-wrap:normal}.markdown-body .octicon{display:inline-block;overflow:visible!important;vertical-align:text-bottom;fill:currentColor}.markdown-body input::-webkit-outer-spin-button,.markdown-body input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.markdown-body .mr-2{margin-right:.5rem!important}.markdown-body:before{display:table;content:""}.markdown-body:after{display:table;clear:both;content:""}.markdown-body>*:first-child{margin-top:0!important}.markdown-body>*:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#f85149}.markdown-body .anchor{float:left;padding-right:.25rem;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre,.markdown-body details{margin-top:0;margin-bottom:1rem}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#f0f6fc;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{padding:0 .2em;font-size:inherit}.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}.markdown-body summary h1,.markdown-body summary h2{padding-bottom:0;border-bottom:0}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ol[type="a s"]{list-style-type:lower-alpha}.markdown-body ol[type="A s"]{list-style-type:upper-alpha}.markdown-body ol[type="i s"]{list-style-type:lower-roman}.markdown-body ol[type="I s"]{list-style-type:upper-roman}.markdown-body ol[type="1"]{list-style-type:decimal}.markdown-body div>ol:not([type]){list-style-type:decimal}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:1rem}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:1rem;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 1rem;margin-bottom:1rem}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid #3d444d}.markdown-body table td>:last-child{margin-bottom:0}.markdown-body table tr{background-color:#0d1117;border-top:1px solid #3d444db3}.markdown-body table tr:nth-child(2n){background-color:#151b23}.markdown-body table img{background-color:transparent}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #3d444d}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#f0f6fc}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;background-color:#656c7633;border-radius:6px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body samp{font-size:85%}.markdown-body pre code{font-size:100%}.markdown-body pre>code{padding:0;margin:0;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:1rem}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:1rem;overflow:auto;font-size:85%;line-height:1.45;color:#f0f6fc;background-color:#151b23;border-radius:6px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px .5rem 9px;text-align:right;background:#0d1117;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#151b23;border-top:0}.markdown-body [data-footnote-ref]:before{content:"["}.markdown-body [data-footnote-ref]:after{content:"]"}.markdown-body .footnotes{font-size:12px;color:#9198a1;border-top:1px solid #3d444d}.markdown-body .footnotes ol{padding-left:1rem}.markdown-body .footnotes ol ul{display:inline-block;padding-left:1rem;margin-top:1rem}.markdown-body .footnotes li{position:relative}.markdown-body .footnotes li:target:before{position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-1.5rem;pointer-events:none;content:"";border:2px solid #1f6feb;border-radius:6px}.markdown-body .footnotes li:target{color:#f0f6fc}.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.markdown-body body:has(:modal){padding-right:var(--dialog-scrollgutter)!important}.markdown-body .pl-c{color:#9198a1}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#79c0ff}.markdown-body .pl-e,.markdown-body .pl-en{color:#d2a8ff}.markdown-body .pl-smi,.markdown-body .pl-s .pl-s1{color:#f0f6fc}.markdown-body .pl-ent{color:#7ee787}.markdown-body .pl-k{color:#ff7b72}.markdown-body .pl-s,.markdown-body .pl-pds,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sre,.markdown-body .pl-sr .pl-sra{color:#a5d6ff}.markdown-body .pl-v,.markdown-body .pl-smw{color:#ffa657}.markdown-body .pl-bu{color:#f85149}.markdown-body .pl-ii{color:#f0f6fc;background-color:#8e1519}.markdown-body .pl-c2{color:#f0f6fc;background-color:#b62324}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#7ee787}.markdown-body .pl-ml{color:#f2cc60}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#1f6feb}.markdown-body .pl-mi{font-style:italic;color:#f0f6fc}.markdown-body .pl-mb{font-weight:700;color:#f0f6fc}.markdown-body .pl-md{color:#ffdcd7;background-color:#67060c}.markdown-body .pl-mi1{color:#aff5b4;background-color:#033a16}.markdown-body .pl-mc{color:#ffdfb6;background-color:#5a1e02}.markdown-body .pl-mi2{color:#f0f6fc;background-color:#1158c7}.markdown-body .pl-mdr{font-weight:700;color:#d2a8ff}.markdown-body .pl-ba{color:#9198a1}.markdown-body .pl-sg{color:#3d444d}.markdown-body .pl-corl{text-decoration:underline;color:#a5d6ff}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.markdown-body button:focus:not(:focus-visible),.markdown-body summary:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible){outline:none;box-shadow:none}.markdown-body [tabindex="0"]:focus:not(:focus-visible),.markdown-body details-dialog:focus:not(:focus-visible){outline:none}.markdown-body g-emoji{display:inline-block;min-width:1ch;font-family:"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:1em;font-style:normal!important;font-weight:400;line-height:1;vertical-align:-.075em}.markdown-body g-emoji img{width:1em;height:1em}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item label{font-weight:400}.markdown-body .task-list-item.enabled label{cursor:pointer}.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.markdown-body .task-list-item .handle{display:none}.markdown-body .task-list-item-checkbox{margin:0 .2em .25em -1.4em;vertical-align:middle}.markdown-body ul:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body ol:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body .contains-task-list:hover .task-list-item-convert-container,.markdown-body .contains-task-list:focus-within .task-list-item-convert-container{display:block;width:auto;height:24px;overflow:visible;clip:auto}.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.markdown-body .markdown-alert{padding:.5rem 1rem;margin-bottom:1rem;color:inherit;border-left:.25em solid #3d444d}.markdown-body .markdown-alert>:first-child{margin-top:0}.markdown-body .markdown-alert>:last-child{margin-bottom:0}.markdown-body .markdown-alert .markdown-alert-title{display:flex;font-weight:500;align-items:center;line-height:1}.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#1f6feb}.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#4493f8}.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8957e5}.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#ab7df8}.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9e6a03}.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#d29922}.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#238636}.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#3fb950}.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#da3633}.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#f85149}.markdown-body>*:first-child>.heading-element:first-child{margin-top:0!important}.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}@keyframes gt-kf-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.gt-container{box-sizing:border-box;font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.5;color:var(--gt-color-text);font-synthesis:none;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gt-container *{box-sizing:border-box}.gt-container a{color:var(--gt-color-main)}.gt-container a:hover{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container a.is--active{color:var(--gt-color-link-active);cursor:default}.gt-container a.is--active:hover{color:var(--gt-color-link-active)}.gt-container .hide{display:none}.gt-container .gt-svg{display:inline-block;width:1em;height:1em;vertical-align:sub}.gt-container .gt-svg svg{width:100%;height:100%;fill:var(--gt-color-main)}.gt-container .gt-ico{display:inline-block}.gt-container .gt-ico-text{margin-left:.3125em}.gt-container .gt-ico-github,.gt-container .gt-ico-github .gt-svg{width:100%;height:100%}.gt-container .gt-ico-github svg{fill:var(--gt-color-text)}.gt-container .gt-spinner{position:relative}.gt-container .gt-spinner:before{position:absolute;top:.1875em;box-sizing:border-box;width:.75em;height:.75em;margin-top:-.1875em;margin-left:-.375em;content:"";border:1px solid var(--gt-color-btn);border-top-color:var(--gt-color-main);border-radius:50%;animation:gt-kf-rotate .6s linear infinite}.gt-container .gt-loader{position:relative;display:inline-block;width:1.75em;height:1.75em;font-style:normal;line-height:1.75em;border:1px solid var(--gt-color-loader);border-radius:50%;animation:ease gt-kf-rotate 1.5s infinite}.gt-container .gt-loader:before{position:absolute;top:0;left:50%;display:block;width:.375em;height:.375em;margin-top:-.1875em;margin-left:-.1875em;content:"";background-color:var(--gt-color-loader);border-radius:50%}.gt-container .gt-avatar{display:inline-block;width:3.125em;height:3.125em}@media (max-width: 480px){.gt-container .gt-avatar{width:2em;height:2em}}.gt-container .gt-avatar img{width:100%;height:auto;border-radius:.1875em}.gt-container .gt-avatar-github{width:3em;height:3em;cursor:pointer}@media (max-width: 480px){.gt-container .gt-avatar-github{width:1.875em;height:1.875em}}.gt-container .gt-btn{display:inline-block;padding:.75em 1.25em;font-size:.75em;line-height:1;color:var(--gt-color-btn);white-space:nowrap;text-decoration:none;cursor:pointer;outline:none;background-color:var(--gt-color-main);border:1px solid var(--gt-color-main);border-radius:.3125em;transition:all ease .25s}.gt-container .gt-btn:hover{background-color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary{color:var(--gt-color-main-lighter);background-color:transparent;border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary:hover{color:var(--gt-color-main);background-color:transparent;border-color:var(--gt-color-main)}.gt-container .gt-btn-text{font-weight:400}.gt-container .gt-btn-loading{position:relative;display:inline-block;width:.75em;height:1em;margin-left:.5em;vertical-align:top}.gt-container .gt-btn.is--disable{cursor:not-allowed;opacity:.5}.gt-container .gt-btn-login{margin-right:0}.gt-container .gt-error{margin:.625em;color:var(--gt-color-error);text-align:center}.gt-container .gt-initing{padding:1.25em 0;text-align:center}.gt-container .gt-initing-text{margin:.625em auto;font-size:92%}.gt-container .gt-no-init{padding:1.25em 0;text-align:center}.gt-container .gt-link{border-bottom:1px dotted var(--gt-color-main)}.gt-container .gt-link-counts,.gt-container .gt-link-project{text-decoration:none}.gt-container .gt-meta{position:relative;z-index:10;padding:1em 0;margin:1.25em 0;font-size:1em;border-bottom:1px solid var(--gt-color-hr)}.gt-container .gt-meta:before,.gt-container .gt-meta:after{display:table;content:""}.gt-container .gt-meta:after{clear:both}.gt-container .gt-counts{margin:0 .625em 0 0}.gt-container .gt-user{float:right;margin:0;font-size:92%}.gt-container .gt-user-pic{width:1em;height:1em;margin-right:.5em;vertical-align:top}.gt-container .gt-user-inner{display:inline-block;cursor:pointer}.gt-container .gt-user .gt-ico{margin:0 0 0 .3125em}.gt-container .gt-user .gt-ico svg{fill:var(--gt-color-text)}.gt-container .gt-user .is--poping .gt-ico svg{fill:var(--gt-color-main)}.gt-container .gt-version{margin-left:.375em;color:var(--gt-color-sub)}.gt-container .gt-copyright{padding-top:.5em;margin:0 .9375em .5em;border-top:1px solid var(--gt-color-hr)}.gt-container .gt-popup{position:absolute;top:2.375em;right:0;display:inline-block;padding:.625em 0;font-size:.875em;letter-spacing:.5px;background:var(--gt-color-popbg);border:1px solid var(--gt-color-hr)}.gt-container .gt-popup .gt-action{position:relative;display:block;padding:0 1.125em;margin:.5em 0;text-decoration:none;cursor:pointer}.gt-container .gt-popup .gt-action.is--active:before{position:absolute;top:.4375em;left:.5em;width:.25em;height:.25em;content:"";background:var(--gt-color-main)}.gt-container .gt-header{position:relative;display:flex}.gt-container .gt-header-comment{flex:1;margin-left:1.25em}@media (max-width: 480px){.gt-container .gt-header-comment{margin-left:.875em}}.gt-container .gt-header-textarea{box-sizing:border-box;display:block;width:100%;min-height:5.125em;max-height:15em;padding:.75em;font-size:.875em;color:inherit;word-wrap:break-word;resize:none;outline:none;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;transition:background-color ease .25s}.gt-container .gt-header-textarea:hover,.gt-container .gt-header-textarea:focus{background-color:var(--gt-color-input-bg-lighter)}.gt-container .gt-header-preview{min-height:5.125em;padding:.75em;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em}.gt-container .gt-header-controls{position:relative;display:flex;align-items:center;margin:.75em 0 0}.gt-container .gt-header-controls-tip{margin-right:auto;font-size:.875em;color:var(--gt-color-main);text-decoration:none}@media (max-width: 480px){.gt-container .gt-header-controls-tip{display:none}}.gt-container .gt-header-controls .gt-btn{margin-left:.75em}@media (max-width: 480px){.gt-container .gt-header-controls .gt-btn{width:100%}.gt-container .gt-header-controls .gt-btn:first-of-type{margin-left:0}}.gt-container .gt-comments{padding-top:1.25em}.gt-container .gt-comments-null{text-align:center}.gt-container .gt-comments-controls{margin:1.25em 0;text-align:center}.gt-container .gt-comment{position:relative;display:flex;padding:.625em 0}.gt-container .gt-comment-content{position:relative;flex:1;padding:.75em 1em;margin-left:1.25em;overflow:auto;background-color:var(--gt-color-comment-bg);transition:all ease .25s}.gt-container .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow)}@media (max-width: 480px){.gt-container .gt-comment-content{padding:.625em .75em;margin-left:.875em}}.gt-container .gt-comment-collapse{position:absolute;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;padding:.375em;cursor:pointer;background:var(--gt-color-comment-collapse-bg)}.gt-container .gt-comment-collapse .gt-ico-collapse .gt-svg svg{fill:var(--gt-color-text);scale:1.2}.gt-container .gt-comment-header{position:relative;display:flex;margin-bottom:.5em;font-size:.875em}.gt-container .gt-comment-username{font-weight:500;color:var(--gt-color-main);text-decoration:none}.gt-container .gt-comment-username:hover{text-decoration:underline}.gt-container .gt-comment-date{margin-left:.5em;color:var(--gt-color-sub)}.gt-container .gt-comment-date__prefix{margin-right:.25em}@media (max-width: 480px){.gt-container .gt-comment-date__prefix{display:none}}@media (max-width: 480px){.gt-container .gt-comment-date__time{font-size:11.2px}}.gt-container .gt-comment-actions{display:flex;gap:.75em;margin-left:auto}.gt-container .gt-comment-like,.gt-container .gt-comment-edit,.gt-container .gt-comment-reply{height:1.375em}.gt-container .gt-comment-like:hover,.gt-container .gt-comment-edit:hover,.gt-container .gt-comment-reply:hover{cursor:pointer}.gt-container .gt-comment-body{color:var(--gt-color-comment-txt);background-color:inherit}.gt-container .gt-comment-body .email-hidden-toggle a{display:inline-block;height:.75em;padding:0 .5625em;font-size:.75em;font-weight:600;line-height:.375em;vertical-align:middle;color:#444d56;text-decoration:none;background:#dfe2e5;border-radius:1px}.gt-container .gt-comment-body .email-hidden-toggle a:hover{background-color:#c6cbd1}.gt-container .gt-comment-body .email-hidden-reply{display:none;white-space:pre-wrap}.gt-container .gt-comment-body .email-hidden-reply.expanded{display:block}.gt-container .gt-comment-body .email-hidden-reply .email-signature-reply{padding:0 .9375em;margin:.9375em 0;color:#586069;border-left:.25em solid #dfe2e5}.gt-container .gt-comment-admin .gt-comment-content{box-shadow:0 .125em .75em 0 var(--gt-color-comment-shadow)}.gt-container .gt-comment-admin .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow-admin)}.gt-container:after{position:fixed;content:"";opacity:0}.gt-container.gt-input-focused{position:relative}.gt-container.gt-input-focused:after{top:0;right:0;bottom:0;left:0;z-index:9999;background:#171717;opacity:.8;transition:opacity ease .3s}.gt-container.gt-input-focused .gt-header-comment{z-index:10000}.gt-container{--gt-theme-mode: dark;--gt-color-text: #e9e9e9;--gt-color-main: #6366f1;--gt-color-main-lighter: rgb(122.4, 124.95, 243.1);--gt-color-sub: #9e9e9e;--gt-color-loader: #777;--gt-color-error: #ef4444;--gt-color-hr: #555;--gt-color-input-border: rgb(255 255 255 / 10%);--gt-color-input-bg: #212121;--gt-color-input-bg-lighter: rgb(48.3, 48.3, 48.3);--gt-color-comment-bg: #212121;--gt-color-comment-shadow: rgb(78.9, 78.9, 78.9);--gt-color-comment-shadow-admin: rgb(94.2, 94.2, 94.2);--gt-color-comment-txt: #fafafa;--gt-color-comment-collapse-bg: linear-gradient( rgb(20 20 20 / 10%), rgb(20 20 20 / 90%) );--gt-color-link-active: #fafafa;--gt-color-btn: #eee;--gt-color-popbg: #171717}
|
|
1
|
+
.markdown-body{--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;color:#f0f6fc;word-wrap:break-word;background-color:#0d1117;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:16px;font-weight:400;line-height:1.5}.markdown-body a{text-underline-offset:.2rem;text-decoration:underline}.markdown-body .octicon{fill:currentColor;vertical-align:text-bottom;display:inline-block}.markdown-body h1:hover .anchor .octicon-link:before,.markdown-body h2:hover .anchor .octicon-link:before,.markdown-body h3:hover .anchor .octicon-link:before,.markdown-body h4:hover .anchor .octicon-link:before,.markdown-body h5:hover .anchor .octicon-link:before,.markdown-body h6:hover .anchor .octicon-link:before{content:" ";background-color:currentColor;width:16px;height:16px;display:inline-block;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.markdown-body details,.markdown-body figcaption,.markdown-body figure{display:block}.markdown-body summary{display:list-item}.markdown-body [hidden]{display:none!important}.markdown-body a{color:#4493f8;background-color:#0000;text-decoration:none}.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.markdown-body b,.markdown-body strong{font-weight:600}.markdown-body dfn{font-style:italic}.markdown-body h1{border-bottom:1px solid #3d444db3;margin:.67em 0;padding-bottom:.3em;font-size:2em;font-weight:600}.markdown-body mark{color:#f0f6fc;background-color:#bb800926}.markdown-body small{font-size:90%}.markdown-body sub,.markdown-body sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}.markdown-body sub{bottom:-.25em}.markdown-body sup{top:-.5em}.markdown-body img{box-sizing:content-box;border-style:none;max-width:100%}.markdown-body code,.markdown-body kbd,.markdown-body pre,.markdown-body samp{font-family:monospace;font-size:1em}.markdown-body figure{margin:1em 2.5rem}.markdown-body hr{box-sizing:content-box;background:#3d444d;border:0;height:.25em;margin:1.5rem 0;padding:0;overflow:hidden}.markdown-body input{font:inherit;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;overflow:visible}.markdown-body [type=button],.markdown-body [type=reset],.markdown-body [type=submit]{appearance:button}.markdown-body [type=checkbox],.markdown-body [type=radio]{box-sizing:border-box;padding:0}.markdown-body [type=number]::-webkit-inner-spin-button{height:auto}.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.markdown-body [type=search]::-webkit-search-cancel-button{appearance:none}.markdown-body [type=search]::-webkit-search-decoration{appearance:none}.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.markdown-body ::-webkit-file-upload-button{appearance:button;font:inherit}.markdown-body a:hover{text-decoration:underline}.markdown-body ::placeholder{color:#9198a1;opacity:1}.markdown-body hr:before{content:"";display:table}.markdown-body hr:after{clear:both;content:"";display:table}.markdown-body table{border-spacing:0;border-collapse:collapse;font-variant:tabular-nums;width:max-content;max-width:100%;display:block;overflow:auto}.markdown-body td,.markdown-body th{padding:0}.markdown-body details summary{cursor:pointer}.markdown-body a:focus,.markdown-body [role=button]:focus,.markdown-body input[type=radio]:focus,.markdown-body input[type=checkbox]:focus{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:-2px;box-shadow:none}.markdown-body a:focus:not(:focus-visible),.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body input[type=radio]:focus:not(:focus-visible),.markdown-body input[type=checkbox]:focus:not(:focus-visible){outline:1px solid #0000}.markdown-body a:focus-visible,.markdown-body [role=button]:focus-visible,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus-visible{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:-2px;box-shadow:none}.markdown-body a:not([class]):focus,.markdown-body a:not([class]):focus-visible,.markdown-body input[type=radio]:focus,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=checkbox]:focus-visible{outline-offset:0}.markdown-body kbd{color:#f0f6fc;vertical-align:middle;border:solid 1px var(--borderColor-muted);border-bottom-color:var(--borderColor-muted);box-shadow:inset 0 -1px 0 var(--borderColor-muted);background-color:#151b23;border-radius:6px;padding:.25rem;font:11px/10px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;display:inline-block}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.markdown-body h2{border-bottom:1px solid #3d444db3;padding-bottom:.3em;font-size:1.5em;font-weight:600}.markdown-body h3{font-size:1.25em;font-weight:600}.markdown-body h4{font-size:1em;font-weight:600}.markdown-body h5{font-size:.875em;font-weight:600}.markdown-body h6{color:#9198a1;font-size:.85em;font-weight:600}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{color:#9198a1;border-left:.25em solid #3d444d;margin:0;padding:0 1em}.markdown-body ul,.markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body tt,.markdown-body code,.markdown-body samp{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body pre{word-wrap:normal;margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body .octicon{vertical-align:text-bottom;fill:currentColor;display:inline-block;overflow:visible!important}.markdown-body input::-webkit-outer-spin-button{appearance:none;margin:0}.markdown-body input::-webkit-inner-spin-button{appearance:none;margin:0}.markdown-body .mr-2{margin-right:.5rem!important}.markdown-body:before{content:"";display:table}.markdown-body:after{clear:both;content:"";display:table}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#f85149}.markdown-body .anchor{float:left;margin-left:-20px;padding-right:.25rem;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre,.markdown-body details{margin-top:0;margin-bottom:1rem}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#f0f6fc;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{font-size:inherit;padding:0 .2em}.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}.markdown-body summary h1,.markdown-body summary h2{border-bottom:0;padding-bottom:0}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ol[type=a\ s]{list-style-type:lower-alpha}.markdown-body ol[type=A\ s]{list-style-type:upper-alpha}.markdown-body ol[type=i\ s]{list-style-type:lower-roman}.markdown-body ol[type=I\ s]{list-style-type:upper-roman}.markdown-body ol[type="1"],.markdown-body div>ol:not([type]){list-style-type:decimal}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:1rem}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{margin-top:1rem;padding:0;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{margin-bottom:1rem;padding:0 1rem}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{border:1px solid #3d444d;padding:6px 13px}.markdown-body table td>:last-child{margin-bottom:0}.markdown-body table tr{background-color:#0d1117;border-top:1px solid #3d444db3}.markdown-body table tr:nth-child(2n){background-color:#151b23}.markdown-body table img{background-color:#0000}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{vertical-align:text-top;background-color:#0000;max-width:none}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{float:left;border:1px solid #3d444d;width:auto;margin:13px 0 0;padding:7px;display:block;overflow:hidden}.markdown-body span.frame span img{float:left;display:block}.markdown-body span.frame span span{clear:both;color:#f0f6fc;padding:5px 0 0;display:block}.markdown-body span.align-center{clear:both;display:block;overflow:hidden}.markdown-body span.align-center>span{text-align:center;margin:13px auto 0;display:block;overflow:hidden}.markdown-body span.align-center span img{text-align:center;margin:0 auto}.markdown-body span.align-right{clear:both;display:block;overflow:hidden}.markdown-body span.align-right>span{text-align:right;margin:13px 0 0;display:block;overflow:hidden}.markdown-body span.align-right span img{text-align:right;margin:0}.markdown-body span.float-left{float:left;margin-right:13px;display:block;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{float:right;margin-left:13px;display:block;overflow:hidden}.markdown-body span.float-right>span{text-align:right;margin:13px auto 0;display:block;overflow:hidden}.markdown-body code,.markdown-body tt{white-space:break-spaces;background-color:#656c7633;border-radius:6px;margin:0;padding:.2em .4em;font-size:85%}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{-webkit-text-decoration:inherit;text-decoration:inherit}.markdown-body samp{font-size:85%}.markdown-body pre code{font-size:100%}.markdown-body pre>code{word-break:normal;white-space:pre;background:0 0;border:0;margin:0;padding:0}.markdown-body .highlight{margin-bottom:1rem}.markdown-body .highlight pre{word-break:normal;margin-bottom:0}.markdown-body .highlight pre,.markdown-body pre{color:#f0f6fc;background-color:#151b23;border-radius:6px;padding:1rem;font-size:85%;line-height:1.45;overflow:auto}.markdown-body pre code,.markdown-body pre tt{line-height:inherit;word-wrap:normal;background-color:#0000;border:0;margin:0;padding:0;display:inline;overflow:visible}.markdown-body .csv-data td,.markdown-body .csv-data th{text-align:left;white-space:nowrap;padding:5px;font-size:12px;line-height:1;overflow:hidden}.markdown-body .csv-data .blob-num{text-align:right;background:#0d1117;border:0;padding:10px .5rem 9px}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{background:#151b23;border-top:0;font-weight:600}.markdown-body [data-footnote-ref]:before{content:"["}.markdown-body [data-footnote-ref]:after{content:"]"}.markdown-body .footnotes{color:#9198a1;border-top:1px solid #3d444d;font-size:12px}.markdown-body .footnotes ol{padding-left:1rem}.markdown-body .footnotes ol ul{margin-top:1rem;padding-left:1rem;display:inline-block}.markdown-body .footnotes li{position:relative}.markdown-body .footnotes li:target:before{pointer-events:none;content:"";border:2px solid #1f6feb;border-radius:6px;position:absolute;inset:-.5rem -.5rem -.5rem -1.5rem}.markdown-body .footnotes li:target{color:#f0f6fc}.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.markdown-body .pl-c{color:#9198a1}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#79c0ff}.markdown-body .pl-e,.markdown-body .pl-en{color:#d2a8ff}.markdown-body .pl-smi,.markdown-body .pl-s .pl-s1{color:#f0f6fc}.markdown-body .pl-ent{color:#7ee787}.markdown-body .pl-k{color:#ff7b72}.markdown-body .pl-s,.markdown-body .pl-pds,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sre,.markdown-body .pl-sr .pl-sra{color:#a5d6ff}.markdown-body .pl-v,.markdown-body .pl-smw{color:#ffa657}.markdown-body .pl-bu{color:#f85149}.markdown-body .pl-ii{color:var(--fgColor-danger);background-color:var(--bgColor-danger-muted)}.markdown-body .pl-c2{color:#f0f6fc;background-color:#b62324}.markdown-body .pl-sr .pl-cce{color:#7ee787;font-weight:700}.markdown-body .pl-ml{color:#f2cc60}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{color:#1f6feb;font-weight:700}.markdown-body .pl-mi{color:#f0f6fc;font-style:italic}.markdown-body .pl-mb{color:#f0f6fc;font-weight:700}.markdown-body .pl-md{color:#ffdcd7;background-color:#67060c}.markdown-body .pl-mi1{color:#aff5b4;background-color:#033a16}.markdown-body .pl-mc{color:#ffdfb6;background-color:#5a1e02}.markdown-body .pl-mi2{color:#f0f6fc;background-color:#1158c7}.markdown-body .pl-mdr{color:#d2a8ff;font-weight:700}.markdown-body .pl-ba{color:#9198a1}.markdown-body .pl-sg{color:#3d444d}.markdown-body .pl-corl{color:#a5d6ff;text-decoration:underline}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.markdown-body button:focus:not(:focus-visible),.markdown-body summary:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible){box-shadow:none;outline:none}.markdown-body [tabindex="0"]:focus:not(:focus-visible),.markdown-body details-dialog:focus:not(:focus-visible){outline:none}.markdown-body g-emoji{vertical-align:-.075em;min-width:1ch;font-family:Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;font-weight:400;line-height:1;display:inline-block;font-style:normal!important}.markdown-body g-emoji img{width:1em;height:1em}.markdown-body a:has(>p,>div,>pre,>blockquote){display:block}.markdown-body a:has(>p,>div,>pre,>blockquote):not(:has(.snippet-clipboard-content,>pre)){width:fit-content}.markdown-body a:has(>p,>div,>pre,>blockquote):has(.snippet-clipboard-content,>pre):focus-visible{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:2px}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item label{font-weight:400}.markdown-body .task-list-item.enabled label{cursor:pointer}.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.markdown-body .task-list-item .handle{display:none}.markdown-body .task-list-item-checkbox{vertical-align:middle;margin:0 .2em .25em -1.4em}.markdown-body ul:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) .task-list-item-checkbox,.markdown-body ol:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body .contains-task-list:hover .task-list-item-convert-container,.markdown-body .contains-task-list:focus-within .task-list-item-convert-container{clip-path:none;width:auto;height:24px;display:block;overflow:visible}.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.markdown-body .markdown-alert{color:inherit;border-left:.25em solid #3d444d;margin-bottom:1rem;padding:.5rem 1rem}.markdown-body .markdown-alert>:first-child{margin-top:0}.markdown-body .markdown-alert>:last-child{margin-bottom:0}.markdown-body .markdown-alert .markdown-alert-title{align-items:center;font-weight:500;line-height:1;display:flex}.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#1f6feb}.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#4493f8}.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8957e5}.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#ab7df8}.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9e6a03}.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#d29922}.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#238636}.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#3fb950}.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#da3633}.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#f85149}.markdown-body>:first-child>.heading-element:first-child{margin-top:0!important}.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}@keyframes gt-kf-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.gt-container{box-sizing:border-box;font-synthesis:none;color:var(--gt-color-text);text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.5}.gt-container *{box-sizing:border-box}.gt-container a{color:var(--gt-color-main)}.gt-container a:hover{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container a.is--active{color:var(--gt-color-link-active);cursor:default}.gt-container a.is--active:hover{color:var(--gt-color-link-active)}.gt-container .hide{display:none}.gt-container .gt-svg{vertical-align:sub;width:1em;height:1em;display:inline-block}.gt-container .gt-svg svg{width:100%;height:100%;fill:var(--gt-color-main)}.gt-container .gt-ico{display:inline-block}.gt-container .gt-ico-text{margin-left:.3125em}.gt-container .gt-ico-github,.gt-container .gt-ico-github .gt-svg{width:100%;height:100%}.gt-container .gt-ico-github svg{fill:var(--gt-color-text)}.gt-container .gt-spinner{position:relative}.gt-container .gt-spinner:before{box-sizing:border-box;content:"";border:1px solid var(--gt-color-btn);border-top-color:var(--gt-color-main);border-radius:50%;width:.75em;height:.75em;margin-top:-.1875em;margin-left:-.375em;animation:.6s linear infinite gt-kf-rotate;position:absolute;top:.1875em}.gt-container .gt-loader{border:1px solid var(--gt-color-loader);border-radius:50%;width:1.75em;height:1.75em;font-style:normal;line-height:1.75em;animation:1.5s infinite gt-kf-rotate;display:inline-block;position:relative}.gt-container .gt-loader:before{content:"";background-color:var(--gt-color-loader);border-radius:50%;width:.375em;height:.375em;margin-top:-.1875em;margin-left:-.1875em;display:block;position:absolute;top:0;left:50%}.gt-container .gt-avatar{width:3.125em;height:3.125em;display:inline-block}@media (width<=480px){.gt-container .gt-avatar{width:2em;height:2em}}.gt-container .gt-avatar img{border-radius:.1875em;width:100%;height:auto}.gt-container .gt-avatar-github{cursor:pointer;width:3em;height:3em}@media (width<=480px){.gt-container .gt-avatar-github{width:1.875em;height:1.875em}}.gt-container .gt-btn{color:var(--gt-color-btn);white-space:nowrap;cursor:pointer;background-color:var(--gt-color-main);border:1px solid var(--gt-color-main);border-radius:.3125em;outline:none;padding:.75em 1.25em;font-size:.75em;line-height:1;text-decoration:none;transition:all .25s;display:inline-block}.gt-container .gt-btn:hover{background-color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter);background-color:#0000}.gt-container .gt-btn--secondary:hover{color:var(--gt-color-main);border-color:var(--gt-color-main);background-color:#0000}.gt-container .gt-btn-text{font-weight:400}.gt-container .gt-btn-loading{vertical-align:top;width:.75em;height:1em;margin-left:.5em;display:inline-block;position:relative}.gt-container .gt-btn.is--disable{cursor:not-allowed;opacity:.5}.gt-container .gt-btn-login{margin-right:0}.gt-container .gt-error{color:var(--gt-color-error);text-align:center;margin:.625em}.gt-container .gt-initing{text-align:center;padding:1.25em 0}.gt-container .gt-initing-text{margin:.625em auto;font-size:92%}.gt-container .gt-no-init{text-align:center;padding:1.25em 0}.gt-container .gt-link{border-bottom:1px dotted var(--gt-color-main)}.gt-container .gt-link-counts,.gt-container .gt-link-project{text-decoration:none}.gt-container .gt-meta{z-index:10;border-bottom:1px solid var(--gt-color-hr);margin:1.25em 0;padding:1em 0;font-size:1em;position:relative}.gt-container .gt-meta:before,.gt-container .gt-meta:after{content:"";display:table}.gt-container .gt-meta:after{clear:both}.gt-container .gt-counts{margin:0 .625em 0 0}.gt-container .gt-user{float:right;margin:0;font-size:92%}.gt-container .gt-user-pic{vertical-align:top;width:1em;height:1em;margin-right:.5em}.gt-container .gt-user-inner{cursor:pointer;display:inline-block}.gt-container .gt-user .gt-ico{margin:0 0 0 .3125em}.gt-container .gt-user .gt-ico svg{fill:var(--gt-color-text)}.gt-container .gt-user .is--poping .gt-ico svg{fill:var(--gt-color-main)}.gt-container .gt-version{color:var(--gt-color-sub);margin-left:.375em}.gt-container .gt-copyright{border-top:1px solid var(--gt-color-hr);margin:0 .9375em .5em;padding-top:.5em}.gt-container .gt-popup{letter-spacing:.5px;background:var(--gt-color-popbg);border:1px solid var(--gt-color-hr);padding:.625em 0;font-size:.875em;display:inline-block;position:absolute;top:2.375em;right:0}.gt-container .gt-popup .gt-action{cursor:pointer;margin:.5em 0;padding:0 1.125em;text-decoration:none;display:block;position:relative}.gt-container .gt-popup .gt-action.is--active:before{content:"";background:var(--gt-color-main);width:.25em;height:.25em;position:absolute;top:.4375em;left:.5em}.gt-container .gt-header{display:flex;position:relative}.gt-container .gt-header-comment{flex:1;margin-left:1.25em}@media (width<=480px){.gt-container .gt-header-comment{margin-left:.875em}}.gt-container .gt-header-textarea{box-sizing:border-box;width:100%;min-height:5.125em;max-height:15em;color:inherit;overflow-wrap:break-word;resize:none;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;outline:none;padding:.75em;font-size:.875em;transition:background-color .25s;display:block}.gt-container .gt-header-textarea:hover,.gt-container .gt-header-textarea:focus{background-color:var(--gt-color-input-bg-lighter)}.gt-container .gt-header-preview{background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;min-height:5.125em;padding:.75em}.gt-container .gt-header-controls{align-items:center;margin:.75em 0 0;display:flex;position:relative}.gt-container .gt-header-controls-tip{color:var(--gt-color-main);margin-right:auto;font-size:.875em;text-decoration:none}@media (width<=480px){.gt-container .gt-header-controls-tip{display:none}}.gt-container .gt-header-controls .gt-btn{margin-left:.75em}@media (width<=480px){.gt-container .gt-header-controls .gt-btn{width:100%}.gt-container .gt-header-controls .gt-btn:first-of-type{margin-left:0}}.gt-container .gt-comments{padding-top:1.25em}.gt-container .gt-comments-null{text-align:center}.gt-container .gt-comments-controls{text-align:center;margin:1.25em 0}.gt-container .gt-comment{padding:.625em 0;display:flex;position:relative}.gt-container .gt-comment-content{background-color:var(--gt-color-comment-bg);flex:1;margin-left:1.25em;padding:.75em 1em;transition:all .25s;position:relative;overflow:auto}.gt-container .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow)}@media (width<=480px){.gt-container .gt-comment-content{margin-left:.875em;padding:.625em .75em}}.gt-container .gt-comment-collapse{cursor:pointer;background:var(--gt-color-comment-collapse-bg);justify-content:center;align-items:center;padding:.375em;display:flex;position:absolute;bottom:0;left:0;right:0}.gt-container .gt-comment-collapse .gt-ico-collapse .gt-svg svg{fill:var(--gt-color-text);scale:1.2}.gt-container .gt-comment-header{margin-bottom:.5em;font-size:.875em;display:flex;position:relative}.gt-container .gt-comment-username{color:var(--gt-color-main);font-weight:500;text-decoration:none}.gt-container .gt-comment-username:hover{text-decoration:underline}.gt-container .gt-comment-date{color:var(--gt-color-sub);margin-left:.5em}.gt-container .gt-comment-date__prefix{margin-right:.25em}@media (width<=480px){.gt-container .gt-comment-date__prefix{display:none}.gt-container .gt-comment-date__time{font-size:11.2px}}.gt-container .gt-comment-actions{gap:.75em;margin-left:auto;display:flex}.gt-container .gt-comment-like,.gt-container .gt-comment-edit,.gt-container .gt-comment-reply{height:1.375em}.gt-container .gt-comment-like:hover,.gt-container .gt-comment-edit:hover,.gt-container .gt-comment-reply:hover{cursor:pointer}.gt-container .gt-comment-body{color:var(--gt-color-comment-txt);background-color:inherit}.gt-container .gt-comment-body .email-hidden-toggle a{vertical-align:middle;color:#444d56;background:#dfe2e5;border-radius:1px;height:.75em;padding:0 .5625em;font-size:.75em;font-weight:600;line-height:.375em;text-decoration:none;display:inline-block}.gt-container .gt-comment-body .email-hidden-toggle a:hover{background-color:#c6cbd1}.gt-container .gt-comment-body .email-hidden-reply{white-space:pre-wrap;display:none}.gt-container .gt-comment-body .email-hidden-reply.expanded{display:block}.gt-container .gt-comment-body .email-hidden-reply .email-signature-reply{color:#586069;border-left:.25em solid #dfe2e5;margin:.9375em 0;padding:0 .9375em}.gt-container .gt-comment-admin--highlight .gt-comment-content{box-shadow:0 .125em .75em 0 var(--gt-color-comment-shadow)}.gt-container .gt-comment-admin--highlight .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow-admin)}.gt-container:after{content:"";opacity:0;position:fixed}.gt-container.gt-input-focused{position:relative}.gt-container.gt-input-focused:after{z-index:9999;opacity:.8;background:#171717;transition:opacity .3s;inset:0}.gt-container.gt-input-focused .gt-header-comment{z-index:10000}.gt-container{--gt-theme-mode:dark;--gt-color-text:#e9e9e9;--gt-color-main:#6366f1;--gt-color-main-lighter:#7a7df3;--gt-color-sub:#9e9e9e;--gt-color-loader:#777;--gt-color-error:#ef4444;--gt-color-hr:#555;--gt-color-input-border:#ffffff1a;--gt-color-input-bg:#212121;--gt-color-input-bg-lighter:#303030;--gt-color-comment-bg:#212121;--gt-color-comment-shadow:#4f4f4f;--gt-color-comment-shadow-admin:#5e5e5e;--gt-color-comment-txt:#fafafa;--gt-color-comment-collapse-bg:linear-gradient(#1414141a, #141414e6);--gt-color-link-active:#fafafa;--gt-color-btn:#eee;--gt-color-popbg:#171717}
|
package/dist/gitalk-light.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.markdown-body{color-scheme:light;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0;color:#1f2328;background-color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .octicon{display:inline-block;fill:currentColor;vertical-align:text-bottom}.markdown-body h1:hover .anchor .octicon-link:before,.markdown-body h2:hover .anchor .octicon-link:before,.markdown-body h3:hover .anchor .octicon-link:before,.markdown-body h4:hover .anchor .octicon-link:before,.markdown-body h5:hover .anchor .octicon-link:before,.markdown-body h6:hover .anchor .octicon-link:before{width:16px;height:16px;content:" ";display:inline-block;background-color:currentColor;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.markdown-body details,.markdown-body figcaption,.markdown-body figure{display:block}.markdown-body summary{display:list-item}.markdown-body [hidden]{display:none!important}.markdown-body a{background-color:transparent;color:#0969da;text-decoration:none}.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.markdown-body b,.markdown-body strong{font-weight:600}.markdown-body dfn{font-style:italic}.markdown-body h1{margin:.67em 0;font-weight:600;padding-bottom:.3em;font-size:2em;border-bottom:1px solid #d1d9e0b3}.markdown-body mark{background-color:#fff8c5;color:#1f2328}.markdown-body small{font-size:90%}.markdown-body sub,.markdown-body sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.markdown-body sub{bottom:-.25em}.markdown-body sup{top:-.5em}.markdown-body img{border-style:none;max-width:100%;box-sizing:content-box}.markdown-body code,.markdown-body kbd,.markdown-body pre,.markdown-body samp{font-family:monospace;font-size:1em}.markdown-body figure{margin:1em 2.5rem}.markdown-body hr{box-sizing:content-box;overflow:hidden;background:transparent;border-bottom:1px solid #d1d9e0b3;height:.25em;padding:0;margin:1.5rem 0;background-color:#d1d9e0;border:0}.markdown-body input{font:inherit;margin:0;overflow:visible;font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body [type=button],.markdown-body [type=reset],.markdown-body [type=submit]{-webkit-appearance:button;-moz-appearance:button;appearance:button}.markdown-body [type=checkbox],.markdown-body [type=radio]{box-sizing:border-box;padding:0}.markdown-body [type=number]::-webkit-inner-spin-button,.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.markdown-body [type=search]::-webkit-search-cancel-button,.markdown-body [type=search]::-webkit-search-decoration{-webkit-appearance:none;-moz-appearance:none;appearance:none}.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.markdown-body ::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;font:inherit}.markdown-body a:hover{text-decoration:underline}.markdown-body ::placeholder{color:#59636e;opacity:1}.markdown-body hr:before{display:table;content:""}.markdown-body hr:after{display:table;clear:both;content:""}.markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;font-variant:tabular-nums}.markdown-body td,.markdown-body th{padding:0}.markdown-body details summary{cursor:pointer}.markdown-body a:focus,.markdown-body [role=button]:focus,.markdown-body input[type=radio]:focus,.markdown-body input[type=checkbox]:focus{outline:2px solid #0969da;outline-offset:-2px;box-shadow:none}.markdown-body a:focus:not(:focus-visible),.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body input[type=radio]:focus:not(:focus-visible),.markdown-body input[type=checkbox]:focus:not(:focus-visible){outline:solid 1px transparent}.markdown-body a:focus-visible,.markdown-body [role=button]:focus-visible,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus-visible{outline:2px solid #0969da;outline-offset:-2px;box-shadow:none}.markdown-body a:not([class]):focus,.markdown-body a:not([class]):focus-visible,.markdown-body input[type=radio]:focus,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=checkbox]:focus-visible{outline-offset:0}.markdown-body kbd{display:inline-block;padding:.25rem;font:11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;line-height:10px;color:#1f2328;vertical-align:middle;background-color:#f6f8fa;border:solid 1px #d1d9e0b3;border-bottom-color:#d1d9e0b3;border-radius:6px;box-shadow:inset 0 -1px #d1d9e0b3}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.markdown-body h2{font-weight:600;padding-bottom:.3em;font-size:1.5em;border-bottom:1px solid #d1d9e0b3}.markdown-body h3{font-weight:600;font-size:1.25em}.markdown-body h4{font-weight:600;font-size:1em}.markdown-body h5{font-weight:600;font-size:.875em}.markdown-body h6{font-weight:600;font-size:.85em;color:#59636e}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0;padding:0 1em;color:#59636e;border-left:.25em solid #d1d9e0}.markdown-body ul,.markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body tt,.markdown-body code,.markdown-body samp{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px;word-wrap:normal}.markdown-body .octicon{display:inline-block;overflow:visible!important;vertical-align:text-bottom;fill:currentColor}.markdown-body input::-webkit-outer-spin-button,.markdown-body input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.markdown-body .mr-2{margin-right:.5rem!important}.markdown-body:before{display:table;content:""}.markdown-body:after{display:table;clear:both;content:""}.markdown-body>*:first-child{margin-top:0!important}.markdown-body>*:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#d1242f}.markdown-body .anchor{float:left;padding-right:.25rem;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre,.markdown-body details{margin-top:0;margin-bottom:1rem}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1f2328;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{padding:0 .2em;font-size:inherit}.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}.markdown-body summary h1,.markdown-body summary h2{padding-bottom:0;border-bottom:0}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ol[type="a s"]{list-style-type:lower-alpha}.markdown-body ol[type="A s"]{list-style-type:upper-alpha}.markdown-body ol[type="i s"]{list-style-type:lower-roman}.markdown-body ol[type="I s"]{list-style-type:upper-roman}.markdown-body ol[type="1"]{list-style-type:decimal}.markdown-body div>ol:not([type]){list-style-type:decimal}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:1rem}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:1rem;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 1rem;margin-bottom:1rem}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid #d1d9e0}.markdown-body table td>:last-child{margin-bottom:0}.markdown-body table tr{background-color:#fff;border-top:1px solid #d1d9e0b3}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:transparent}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #d1d9e0}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#1f2328}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;background-color:#818b981f;border-radius:6px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body samp{font-size:85%}.markdown-body pre code{font-size:100%}.markdown-body pre>code{padding:0;margin:0;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:1rem}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:1rem;overflow:auto;font-size:85%;line-height:1.45;color:#1f2328;background-color:#f6f8fa;border-radius:6px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px .5rem 9px;text-align:right;background:#fff;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#f6f8fa;border-top:0}.markdown-body [data-footnote-ref]:before{content:"["}.markdown-body [data-footnote-ref]:after{content:"]"}.markdown-body .footnotes{font-size:12px;color:#59636e;border-top:1px solid #d1d9e0}.markdown-body .footnotes ol{padding-left:1rem}.markdown-body .footnotes ol ul{display:inline-block;padding-left:1rem;margin-top:1rem}.markdown-body .footnotes li{position:relative}.markdown-body .footnotes li:target:before{position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-1.5rem;pointer-events:none;content:"";border:2px solid #0969da;border-radius:6px}.markdown-body .footnotes li:target{color:#1f2328}.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.markdown-body body:has(:modal){padding-right:var(--dialog-scrollgutter)!important}.markdown-body .pl-c{color:#59636e}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0550ae}.markdown-body .pl-e,.markdown-body .pl-en{color:#6639ba}.markdown-body .pl-smi,.markdown-body .pl-s .pl-s1{color:#1f2328}.markdown-body .pl-ent{color:#0550ae}.markdown-body .pl-k{color:#cf222e}.markdown-body .pl-s,.markdown-body .pl-pds,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sre,.markdown-body .pl-sr .pl-sra{color:#0a3069}.markdown-body .pl-v,.markdown-body .pl-smw{color:#953800}.markdown-body .pl-bu{color:#82071e}.markdown-body .pl-ii{color:#f6f8fa;background-color:#82071e}.markdown-body .pl-c2{color:#f6f8fa;background-color:#cf222e}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#116329}.markdown-body .pl-ml{color:#3b2300}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#0550ae}.markdown-body .pl-mi{font-style:italic;color:#1f2328}.markdown-body .pl-mb{font-weight:700;color:#1f2328}.markdown-body .pl-md{color:#82071e;background-color:#ffebe9}.markdown-body .pl-mi1{color:#116329;background-color:#dafbe1}.markdown-body .pl-mc{color:#953800;background-color:#ffd8b5}.markdown-body .pl-mi2{color:#d1d9e0;background-color:#0550ae}.markdown-body .pl-mdr{font-weight:700;color:#8250df}.markdown-body .pl-ba{color:#59636e}.markdown-body .pl-sg{color:#818b98}.markdown-body .pl-corl{text-decoration:underline;color:#0a3069}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.markdown-body button:focus:not(:focus-visible),.markdown-body summary:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible){outline:none;box-shadow:none}.markdown-body [tabindex="0"]:focus:not(:focus-visible),.markdown-body details-dialog:focus:not(:focus-visible){outline:none}.markdown-body g-emoji{display:inline-block;min-width:1ch;font-family:"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:1em;font-style:normal!important;font-weight:400;line-height:1;vertical-align:-.075em}.markdown-body g-emoji img{width:1em;height:1em}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item label{font-weight:400}.markdown-body .task-list-item.enabled label{cursor:pointer}.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.markdown-body .task-list-item .handle{display:none}.markdown-body .task-list-item-checkbox{margin:0 .2em .25em -1.4em;vertical-align:middle}.markdown-body ul:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body ol:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body .contains-task-list:hover .task-list-item-convert-container,.markdown-body .contains-task-list:focus-within .task-list-item-convert-container{display:block;width:auto;height:24px;overflow:visible;clip:auto}.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.markdown-body .markdown-alert{padding:.5rem 1rem;margin-bottom:1rem;color:inherit;border-left:.25em solid #d1d9e0}.markdown-body .markdown-alert>:first-child{margin-top:0}.markdown-body .markdown-alert>:last-child{margin-bottom:0}.markdown-body .markdown-alert .markdown-alert-title{display:flex;font-weight:500;align-items:center;line-height:1}.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#0969da}.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#0969da}.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8250df}.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#8250df}.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9a6700}.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#9a6700}.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#cf222e}.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#d1242f}.markdown-body>*:first-child>.heading-element:first-child{margin-top:0!important}.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}@keyframes gt-kf-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.gt-container{box-sizing:border-box;font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.5;color:var(--gt-color-text);font-synthesis:none;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gt-container *{box-sizing:border-box}.gt-container a{color:var(--gt-color-main)}.gt-container a:hover{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container a.is--active{color:var(--gt-color-link-active);cursor:default}.gt-container a.is--active:hover{color:var(--gt-color-link-active)}.gt-container .hide{display:none}.gt-container .gt-svg{display:inline-block;width:1em;height:1em;vertical-align:sub}.gt-container .gt-svg svg{width:100%;height:100%;fill:var(--gt-color-main)}.gt-container .gt-ico{display:inline-block}.gt-container .gt-ico-text{margin-left:.3125em}.gt-container .gt-ico-github,.gt-container .gt-ico-github .gt-svg{width:100%;height:100%}.gt-container .gt-ico-github svg{fill:var(--gt-color-text)}.gt-container .gt-spinner{position:relative}.gt-container .gt-spinner:before{position:absolute;top:.1875em;box-sizing:border-box;width:.75em;height:.75em;margin-top:-.1875em;margin-left:-.375em;content:"";border:1px solid var(--gt-color-btn);border-top-color:var(--gt-color-main);border-radius:50%;animation:gt-kf-rotate .6s linear infinite}.gt-container .gt-loader{position:relative;display:inline-block;width:1.75em;height:1.75em;font-style:normal;line-height:1.75em;border:1px solid var(--gt-color-loader);border-radius:50%;animation:ease gt-kf-rotate 1.5s infinite}.gt-container .gt-loader:before{position:absolute;top:0;left:50%;display:block;width:.375em;height:.375em;margin-top:-.1875em;margin-left:-.1875em;content:"";background-color:var(--gt-color-loader);border-radius:50%}.gt-container .gt-avatar{display:inline-block;width:3.125em;height:3.125em}@media (max-width: 480px){.gt-container .gt-avatar{width:2em;height:2em}}.gt-container .gt-avatar img{width:100%;height:auto;border-radius:.1875em}.gt-container .gt-avatar-github{width:3em;height:3em;cursor:pointer}@media (max-width: 480px){.gt-container .gt-avatar-github{width:1.875em;height:1.875em}}.gt-container .gt-btn{display:inline-block;padding:.75em 1.25em;font-size:.75em;line-height:1;color:var(--gt-color-btn);white-space:nowrap;text-decoration:none;cursor:pointer;outline:none;background-color:var(--gt-color-main);border:1px solid var(--gt-color-main);border-radius:.3125em;transition:all ease .25s}.gt-container .gt-btn:hover{background-color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary{color:var(--gt-color-main-lighter);background-color:transparent;border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary:hover{color:var(--gt-color-main);background-color:transparent;border-color:var(--gt-color-main)}.gt-container .gt-btn-text{font-weight:400}.gt-container .gt-btn-loading{position:relative;display:inline-block;width:.75em;height:1em;margin-left:.5em;vertical-align:top}.gt-container .gt-btn.is--disable{cursor:not-allowed;opacity:.5}.gt-container .gt-btn-login{margin-right:0}.gt-container .gt-error{margin:.625em;color:var(--gt-color-error);text-align:center}.gt-container .gt-initing{padding:1.25em 0;text-align:center}.gt-container .gt-initing-text{margin:.625em auto;font-size:92%}.gt-container .gt-no-init{padding:1.25em 0;text-align:center}.gt-container .gt-link{border-bottom:1px dotted var(--gt-color-main)}.gt-container .gt-link-counts,.gt-container .gt-link-project{text-decoration:none}.gt-container .gt-meta{position:relative;z-index:10;padding:1em 0;margin:1.25em 0;font-size:1em;border-bottom:1px solid var(--gt-color-hr)}.gt-container .gt-meta:before,.gt-container .gt-meta:after{display:table;content:""}.gt-container .gt-meta:after{clear:both}.gt-container .gt-counts{margin:0 .625em 0 0}.gt-container .gt-user{float:right;margin:0;font-size:92%}.gt-container .gt-user-pic{width:1em;height:1em;margin-right:.5em;vertical-align:top}.gt-container .gt-user-inner{display:inline-block;cursor:pointer}.gt-container .gt-user .gt-ico{margin:0 0 0 .3125em}.gt-container .gt-user .gt-ico svg{fill:var(--gt-color-text)}.gt-container .gt-user .is--poping .gt-ico svg{fill:var(--gt-color-main)}.gt-container .gt-version{margin-left:.375em;color:var(--gt-color-sub)}.gt-container .gt-copyright{padding-top:.5em;margin:0 .9375em .5em;border-top:1px solid var(--gt-color-hr)}.gt-container .gt-popup{position:absolute;top:2.375em;right:0;display:inline-block;padding:.625em 0;font-size:.875em;letter-spacing:.5px;background:var(--gt-color-popbg);border:1px solid var(--gt-color-hr)}.gt-container .gt-popup .gt-action{position:relative;display:block;padding:0 1.125em;margin:.5em 0;text-decoration:none;cursor:pointer}.gt-container .gt-popup .gt-action.is--active:before{position:absolute;top:.4375em;left:.5em;width:.25em;height:.25em;content:"";background:var(--gt-color-main)}.gt-container .gt-header{position:relative;display:flex}.gt-container .gt-header-comment{flex:1;margin-left:1.25em}@media (max-width: 480px){.gt-container .gt-header-comment{margin-left:.875em}}.gt-container .gt-header-textarea{box-sizing:border-box;display:block;width:100%;min-height:5.125em;max-height:15em;padding:.75em;font-size:.875em;color:inherit;word-wrap:break-word;resize:none;outline:none;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;transition:background-color ease .25s}.gt-container .gt-header-textarea:hover,.gt-container .gt-header-textarea:focus{background-color:var(--gt-color-input-bg-lighter)}.gt-container .gt-header-preview{min-height:5.125em;padding:.75em;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em}.gt-container .gt-header-controls{position:relative;display:flex;align-items:center;margin:.75em 0 0}.gt-container .gt-header-controls-tip{margin-right:auto;font-size:.875em;color:var(--gt-color-main);text-decoration:none}@media (max-width: 480px){.gt-container .gt-header-controls-tip{display:none}}.gt-container .gt-header-controls .gt-btn{margin-left:.75em}@media (max-width: 480px){.gt-container .gt-header-controls .gt-btn{width:100%}.gt-container .gt-header-controls .gt-btn:first-of-type{margin-left:0}}.gt-container .gt-comments{padding-top:1.25em}.gt-container .gt-comments-null{text-align:center}.gt-container .gt-comments-controls{margin:1.25em 0;text-align:center}.gt-container .gt-comment{position:relative;display:flex;padding:.625em 0}.gt-container .gt-comment-content{position:relative;flex:1;padding:.75em 1em;margin-left:1.25em;overflow:auto;background-color:var(--gt-color-comment-bg);transition:all ease .25s}.gt-container .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow)}@media (max-width: 480px){.gt-container .gt-comment-content{padding:.625em .75em;margin-left:.875em}}.gt-container .gt-comment-collapse{position:absolute;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;padding:.375em;cursor:pointer;background:var(--gt-color-comment-collapse-bg)}.gt-container .gt-comment-collapse .gt-ico-collapse .gt-svg svg{fill:var(--gt-color-text);scale:1.2}.gt-container .gt-comment-header{position:relative;display:flex;margin-bottom:.5em;font-size:.875em}.gt-container .gt-comment-username{font-weight:500;color:var(--gt-color-main);text-decoration:none}.gt-container .gt-comment-username:hover{text-decoration:underline}.gt-container .gt-comment-date{margin-left:.5em;color:var(--gt-color-sub)}.gt-container .gt-comment-date__prefix{margin-right:.25em}@media (max-width: 480px){.gt-container .gt-comment-date__prefix{display:none}}@media (max-width: 480px){.gt-container .gt-comment-date__time{font-size:11.2px}}.gt-container .gt-comment-actions{display:flex;gap:.75em;margin-left:auto}.gt-container .gt-comment-like,.gt-container .gt-comment-edit,.gt-container .gt-comment-reply{height:1.375em}.gt-container .gt-comment-like:hover,.gt-container .gt-comment-edit:hover,.gt-container .gt-comment-reply:hover{cursor:pointer}.gt-container .gt-comment-body{color:var(--gt-color-comment-txt);background-color:inherit}.gt-container .gt-comment-body .email-hidden-toggle a{display:inline-block;height:.75em;padding:0 .5625em;font-size:.75em;font-weight:600;line-height:.375em;vertical-align:middle;color:#444d56;text-decoration:none;background:#dfe2e5;border-radius:1px}.gt-container .gt-comment-body .email-hidden-toggle a:hover{background-color:#c6cbd1}.gt-container .gt-comment-body .email-hidden-reply{display:none;white-space:pre-wrap}.gt-container .gt-comment-body .email-hidden-reply.expanded{display:block}.gt-container .gt-comment-body .email-hidden-reply .email-signature-reply{padding:0 .9375em;margin:.9375em 0;color:#586069;border-left:.25em solid #dfe2e5}.gt-container .gt-comment-admin .gt-comment-content{box-shadow:0 .125em .75em 0 var(--gt-color-comment-shadow)}.gt-container .gt-comment-admin .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow-admin)}.gt-container:after{position:fixed;content:"";opacity:0}.gt-container.gt-input-focused{position:relative}.gt-container.gt-input-focused:after{top:0;right:0;bottom:0;left:0;z-index:9999;background:#171717;opacity:.8;transition:opacity ease .3s}.gt-container.gt-input-focused .gt-header-comment{z-index:10000}.gt-container{--gt-theme-mode: light;--gt-color-text: #171717;--gt-color-main: #3b82f6;--gt-color-main-lighter: rgb(107.7609756098, 161.0975609756, 248.2390243902);--gt-color-sub: #a1a1a1;--gt-color-loader: #999;--gt-color-error: #ff3860;--gt-color-hr: #e9e9e9;--gt-color-input-border: rgb(0 0 0 / 10%);--gt-color-input-bg: #f6f6f6;--gt-color-input-bg-lighter: hsl(0, 0%, 146.4705882353%);--gt-color-comment-bg: #f9f9f9;--gt-color-comment-shadow: rgb(218.4, 218.4, 218.4);--gt-color-comment-shadow-admin: rgb(203.1, 203.1, 203.1);--gt-color-comment-txt: #333;--gt-color-comment-collapse-bg: linear-gradient( rgb(245 245 245 / 10%), rgb(245 245 245 / 90%) );--gt-color-link-active: #333;--gt-color-btn: #fff;--gt-color-popbg: #fff}
|
|
1
|
+
.markdown-body{--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;color:#1f2328;word-wrap:break-word;background-color:#fff;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Noto Sans,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:16px;font-weight:400;line-height:1.5}.markdown-body a{text-underline-offset:.2rem;text-decoration:underline}.markdown-body .octicon{fill:currentColor;vertical-align:text-bottom;display:inline-block}.markdown-body h1:hover .anchor .octicon-link:before,.markdown-body h2:hover .anchor .octicon-link:before,.markdown-body h3:hover .anchor .octicon-link:before,.markdown-body h4:hover .anchor .octicon-link:before,.markdown-body h5:hover .anchor .octicon-link:before,.markdown-body h6:hover .anchor .octicon-link:before{content:" ";background-color:currentColor;width:16px;height:16px;display:inline-block;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.markdown-body details,.markdown-body figcaption,.markdown-body figure{display:block}.markdown-body summary{display:list-item}.markdown-body [hidden]{display:none!important}.markdown-body a{color:#0969da;background-color:#0000;text-decoration:none}.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.markdown-body b,.markdown-body strong{font-weight:600}.markdown-body dfn{font-style:italic}.markdown-body h1{border-bottom:1px solid #d1d9e0b3;margin:.67em 0;padding-bottom:.3em;font-size:2em;font-weight:600}.markdown-body mark{color:#1f2328;background-color:#fff8c5}.markdown-body small{font-size:90%}.markdown-body sub,.markdown-body sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}.markdown-body sub{bottom:-.25em}.markdown-body sup{top:-.5em}.markdown-body img{box-sizing:content-box;border-style:none;max-width:100%}.markdown-body code,.markdown-body kbd,.markdown-body pre,.markdown-body samp{font-family:monospace;font-size:1em}.markdown-body figure{margin:1em 2.5rem}.markdown-body hr{box-sizing:content-box;background:#d1d9e0;border:0;height:.25em;margin:1.5rem 0;padding:0;overflow:hidden}.markdown-body input{font:inherit;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;overflow:visible}.markdown-body [type=button],.markdown-body [type=reset],.markdown-body [type=submit]{appearance:button}.markdown-body [type=checkbox],.markdown-body [type=radio]{box-sizing:border-box;padding:0}.markdown-body [type=number]::-webkit-inner-spin-button{height:auto}.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.markdown-body [type=search]::-webkit-search-cancel-button{appearance:none}.markdown-body [type=search]::-webkit-search-decoration{appearance:none}.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.markdown-body ::-webkit-file-upload-button{appearance:button;font:inherit}.markdown-body a:hover{text-decoration:underline}.markdown-body ::placeholder{color:#59636e;opacity:1}.markdown-body hr:before{content:"";display:table}.markdown-body hr:after{clear:both;content:"";display:table}.markdown-body table{border-spacing:0;border-collapse:collapse;font-variant:tabular-nums;width:max-content;max-width:100%;display:block;overflow:auto}.markdown-body td,.markdown-body th{padding:0}.markdown-body details summary{cursor:pointer}.markdown-body a:focus,.markdown-body [role=button]:focus,.markdown-body input[type=radio]:focus,.markdown-body input[type=checkbox]:focus{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:-2px;box-shadow:none}.markdown-body a:focus:not(:focus-visible),.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body input[type=radio]:focus:not(:focus-visible),.markdown-body input[type=checkbox]:focus:not(:focus-visible){outline:1px solid #0000}.markdown-body a:focus-visible,.markdown-body [role=button]:focus-visible,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus-visible{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:-2px;box-shadow:none}.markdown-body a:not([class]):focus,.markdown-body a:not([class]):focus-visible,.markdown-body input[type=radio]:focus,.markdown-body input[type=radio]:focus-visible,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=checkbox]:focus-visible{outline-offset:0}.markdown-body kbd{color:#1f2328;vertical-align:middle;border:solid 1px var(--borderColor-muted);border-bottom-color:var(--borderColor-muted);box-shadow:inset 0 -1px 0 var(--borderColor-muted);background-color:#f6f8fa;border-radius:6px;padding:.25rem;font:11px/10px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;display:inline-block}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.markdown-body h2{border-bottom:1px solid #d1d9e0b3;padding-bottom:.3em;font-size:1.5em;font-weight:600}.markdown-body h3{font-size:1.25em;font-weight:600}.markdown-body h4{font-size:1em;font-weight:600}.markdown-body h5{font-size:.875em;font-weight:600}.markdown-body h6{color:#59636e;font-size:.85em;font-weight:600}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{color:#59636e;border-left:.25em solid #d1d9e0;margin:0;padding:0 1em}.markdown-body ul,.markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body tt,.markdown-body code,.markdown-body samp{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body pre{word-wrap:normal;margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body .octicon{vertical-align:text-bottom;fill:currentColor;display:inline-block;overflow:visible!important}.markdown-body input::-webkit-outer-spin-button{appearance:none;margin:0}.markdown-body input::-webkit-inner-spin-button{appearance:none;margin:0}.markdown-body .mr-2{margin-right:.5rem!important}.markdown-body:before{content:"";display:table}.markdown-body:after{clear:both;content:"";display:table}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#d1242f}.markdown-body .anchor{float:left;margin-left:-20px;padding-right:.25rem;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre,.markdown-body details{margin-top:0;margin-bottom:1rem}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1f2328;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{font-size:inherit;padding:0 .2em}.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}.markdown-body summary h1,.markdown-body summary h2{border-bottom:0;padding-bottom:0}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ol[type=a\ s]{list-style-type:lower-alpha}.markdown-body ol[type=A\ s]{list-style-type:upper-alpha}.markdown-body ol[type=i\ s]{list-style-type:lower-roman}.markdown-body ol[type=I\ s]{list-style-type:upper-roman}.markdown-body ol[type="1"],.markdown-body div>ol:not([type]){list-style-type:decimal}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:1rem}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{margin-top:1rem;padding:0;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{margin-bottom:1rem;padding:0 1rem}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{border:1px solid #d1d9e0;padding:6px 13px}.markdown-body table td>:last-child{margin-bottom:0}.markdown-body table tr{background-color:#fff;border-top:1px solid #d1d9e0b3}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:#0000}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{vertical-align:text-top;background-color:#0000;max-width:none}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{float:left;border:1px solid #d1d9e0;width:auto;margin:13px 0 0;padding:7px;display:block;overflow:hidden}.markdown-body span.frame span img{float:left;display:block}.markdown-body span.frame span span{clear:both;color:#1f2328;padding:5px 0 0;display:block}.markdown-body span.align-center{clear:both;display:block;overflow:hidden}.markdown-body span.align-center>span{text-align:center;margin:13px auto 0;display:block;overflow:hidden}.markdown-body span.align-center span img{text-align:center;margin:0 auto}.markdown-body span.align-right{clear:both;display:block;overflow:hidden}.markdown-body span.align-right>span{text-align:right;margin:13px 0 0;display:block;overflow:hidden}.markdown-body span.align-right span img{text-align:right;margin:0}.markdown-body span.float-left{float:left;margin-right:13px;display:block;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{float:right;margin-left:13px;display:block;overflow:hidden}.markdown-body span.float-right>span{text-align:right;margin:13px auto 0;display:block;overflow:hidden}.markdown-body code,.markdown-body tt{white-space:break-spaces;background-color:#818b981f;border-radius:6px;margin:0;padding:.2em .4em;font-size:85%}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{-webkit-text-decoration:inherit;text-decoration:inherit}.markdown-body samp{font-size:85%}.markdown-body pre code{font-size:100%}.markdown-body pre>code{word-break:normal;white-space:pre;background:0 0;border:0;margin:0;padding:0}.markdown-body .highlight{margin-bottom:1rem}.markdown-body .highlight pre{word-break:normal;margin-bottom:0}.markdown-body .highlight pre,.markdown-body pre{color:#1f2328;background-color:#f6f8fa;border-radius:6px;padding:1rem;font-size:85%;line-height:1.45;overflow:auto}.markdown-body pre code,.markdown-body pre tt{line-height:inherit;word-wrap:normal;background-color:#0000;border:0;margin:0;padding:0;display:inline;overflow:visible}.markdown-body .csv-data td,.markdown-body .csv-data th{text-align:left;white-space:nowrap;padding:5px;font-size:12px;line-height:1;overflow:hidden}.markdown-body .csv-data .blob-num{text-align:right;background:#fff;border:0;padding:10px .5rem 9px}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{background:#f6f8fa;border-top:0;font-weight:600}.markdown-body [data-footnote-ref]:before{content:"["}.markdown-body [data-footnote-ref]:after{content:"]"}.markdown-body .footnotes{color:#59636e;border-top:1px solid #d1d9e0;font-size:12px}.markdown-body .footnotes ol{padding-left:1rem}.markdown-body .footnotes ol ul{margin-top:1rem;padding-left:1rem;display:inline-block}.markdown-body .footnotes li{position:relative}.markdown-body .footnotes li:target:before{pointer-events:none;content:"";border:2px solid #0969da;border-radius:6px;position:absolute;inset:-.5rem -.5rem -.5rem -1.5rem}.markdown-body .footnotes li:target{color:#1f2328}.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.markdown-body .pl-c{color:#59636e}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0550ae}.markdown-body .pl-e,.markdown-body .pl-en{color:#6639ba}.markdown-body .pl-smi,.markdown-body .pl-s .pl-s1{color:#1f2328}.markdown-body .pl-ent{color:#0550ae}.markdown-body .pl-k{color:#cf222e}.markdown-body .pl-s,.markdown-body .pl-pds,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sre,.markdown-body .pl-sr .pl-sra{color:#0a3069}.markdown-body .pl-v,.markdown-body .pl-smw{color:#953800}.markdown-body .pl-bu{color:#82071e}.markdown-body .pl-ii{color:var(--fgColor-danger);background-color:var(--bgColor-danger-muted)}.markdown-body .pl-c2{color:#f6f8fa;background-color:#cf222e}.markdown-body .pl-sr .pl-cce{color:#116329;font-weight:700}.markdown-body .pl-ml{color:#3b2300}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{color:#0550ae;font-weight:700}.markdown-body .pl-mi{color:#1f2328;font-style:italic}.markdown-body .pl-mb{color:#1f2328;font-weight:700}.markdown-body .pl-md{color:#82071e;background-color:#ffebe9}.markdown-body .pl-mi1{color:#116329;background-color:#dafbe1}.markdown-body .pl-mc{color:#953800;background-color:#ffd8b5}.markdown-body .pl-mi2{color:#d1d9e0;background-color:#0550ae}.markdown-body .pl-mdr{color:#8250df;font-weight:700}.markdown-body .pl-ba{color:#59636e}.markdown-body .pl-sg{color:#818b98}.markdown-body .pl-corl{color:#0a3069;text-decoration:underline}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.markdown-body button:focus:not(:focus-visible),.markdown-body summary:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible){box-shadow:none;outline:none}.markdown-body [tabindex="0"]:focus:not(:focus-visible),.markdown-body details-dialog:focus:not(:focus-visible){outline:none}.markdown-body g-emoji{vertical-align:-.075em;min-width:1ch;font-family:Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;font-weight:400;line-height:1;display:inline-block;font-style:normal!important}.markdown-body g-emoji img{width:1em;height:1em}.markdown-body a:has(>p,>div,>pre,>blockquote){display:block}.markdown-body a:has(>p,>div,>pre,>blockquote):not(:has(.snippet-clipboard-content,>pre)){width:fit-content}.markdown-body a:has(>p,>div,>pre,>blockquote):has(.snippet-clipboard-content,>pre):focus-visible{outline:2px solid var(--borderColor-accent-emphasis);outline-offset:2px}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item label{font-weight:400}.markdown-body .task-list-item.enabled label{cursor:pointer}.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.markdown-body .task-list-item .handle{display:none}.markdown-body .task-list-item-checkbox{vertical-align:middle;margin:0 .2em .25em -1.4em}.markdown-body ul:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) .task-list-item-checkbox,.markdown-body ol:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body .contains-task-list:hover .task-list-item-convert-container,.markdown-body .contains-task-list:focus-within .task-list-item-convert-container{clip-path:none;width:auto;height:24px;display:block;overflow:visible}.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.markdown-body .markdown-alert{color:inherit;border-left:.25em solid #d1d9e0;margin-bottom:1rem;padding:.5rem 1rem}.markdown-body .markdown-alert>:first-child{margin-top:0}.markdown-body .markdown-alert>:last-child{margin-bottom:0}.markdown-body .markdown-alert .markdown-alert-title{align-items:center;font-weight:500;line-height:1;display:flex}.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#0969da}.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#0969da}.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8250df}.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#8250df}.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9a6700}.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#9a6700}.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#cf222e}.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#d1242f}.markdown-body>:first-child>.heading-element:first-child{margin-top:0!important}.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}@keyframes gt-kf-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.gt-container{box-sizing:border-box;font-synthesis:none;color:var(--gt-color-text);text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.5}.gt-container *{box-sizing:border-box}.gt-container a{color:var(--gt-color-main)}.gt-container a:hover{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container a.is--active{color:var(--gt-color-link-active);cursor:default}.gt-container a.is--active:hover{color:var(--gt-color-link-active)}.gt-container .hide{display:none}.gt-container .gt-svg{vertical-align:sub;width:1em;height:1em;display:inline-block}.gt-container .gt-svg svg{width:100%;height:100%;fill:var(--gt-color-main)}.gt-container .gt-ico{display:inline-block}.gt-container .gt-ico-text{margin-left:.3125em}.gt-container .gt-ico-github,.gt-container .gt-ico-github .gt-svg{width:100%;height:100%}.gt-container .gt-ico-github svg{fill:var(--gt-color-text)}.gt-container .gt-spinner{position:relative}.gt-container .gt-spinner:before{box-sizing:border-box;content:"";border:1px solid var(--gt-color-btn);border-top-color:var(--gt-color-main);border-radius:50%;width:.75em;height:.75em;margin-top:-.1875em;margin-left:-.375em;animation:.6s linear infinite gt-kf-rotate;position:absolute;top:.1875em}.gt-container .gt-loader{border:1px solid var(--gt-color-loader);border-radius:50%;width:1.75em;height:1.75em;font-style:normal;line-height:1.75em;animation:1.5s infinite gt-kf-rotate;display:inline-block;position:relative}.gt-container .gt-loader:before{content:"";background-color:var(--gt-color-loader);border-radius:50%;width:.375em;height:.375em;margin-top:-.1875em;margin-left:-.1875em;display:block;position:absolute;top:0;left:50%}.gt-container .gt-avatar{width:3.125em;height:3.125em;display:inline-block}@media (width<=480px){.gt-container .gt-avatar{width:2em;height:2em}}.gt-container .gt-avatar img{border-radius:.1875em;width:100%;height:auto}.gt-container .gt-avatar-github{cursor:pointer;width:3em;height:3em}@media (width<=480px){.gt-container .gt-avatar-github{width:1.875em;height:1.875em}}.gt-container .gt-btn{color:var(--gt-color-btn);white-space:nowrap;cursor:pointer;background-color:var(--gt-color-main);border:1px solid var(--gt-color-main);border-radius:.3125em;outline:none;padding:.75em 1.25em;font-size:.75em;line-height:1;text-decoration:none;transition:all .25s;display:inline-block}.gt-container .gt-btn:hover{background-color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter)}.gt-container .gt-btn--secondary{color:var(--gt-color-main-lighter);border-color:var(--gt-color-main-lighter);background-color:#0000}.gt-container .gt-btn--secondary:hover{color:var(--gt-color-main);border-color:var(--gt-color-main);background-color:#0000}.gt-container .gt-btn-text{font-weight:400}.gt-container .gt-btn-loading{vertical-align:top;width:.75em;height:1em;margin-left:.5em;display:inline-block;position:relative}.gt-container .gt-btn.is--disable{cursor:not-allowed;opacity:.5}.gt-container .gt-btn-login{margin-right:0}.gt-container .gt-error{color:var(--gt-color-error);text-align:center;margin:.625em}.gt-container .gt-initing{text-align:center;padding:1.25em 0}.gt-container .gt-initing-text{margin:.625em auto;font-size:92%}.gt-container .gt-no-init{text-align:center;padding:1.25em 0}.gt-container .gt-link{border-bottom:1px dotted var(--gt-color-main)}.gt-container .gt-link-counts,.gt-container .gt-link-project{text-decoration:none}.gt-container .gt-meta{z-index:10;border-bottom:1px solid var(--gt-color-hr);margin:1.25em 0;padding:1em 0;font-size:1em;position:relative}.gt-container .gt-meta:before,.gt-container .gt-meta:after{content:"";display:table}.gt-container .gt-meta:after{clear:both}.gt-container .gt-counts{margin:0 .625em 0 0}.gt-container .gt-user{float:right;margin:0;font-size:92%}.gt-container .gt-user-pic{vertical-align:top;width:1em;height:1em;margin-right:.5em}.gt-container .gt-user-inner{cursor:pointer;display:inline-block}.gt-container .gt-user .gt-ico{margin:0 0 0 .3125em}.gt-container .gt-user .gt-ico svg{fill:var(--gt-color-text)}.gt-container .gt-user .is--poping .gt-ico svg{fill:var(--gt-color-main)}.gt-container .gt-version{color:var(--gt-color-sub);margin-left:.375em}.gt-container .gt-copyright{border-top:1px solid var(--gt-color-hr);margin:0 .9375em .5em;padding-top:.5em}.gt-container .gt-popup{letter-spacing:.5px;background:var(--gt-color-popbg);border:1px solid var(--gt-color-hr);padding:.625em 0;font-size:.875em;display:inline-block;position:absolute;top:2.375em;right:0}.gt-container .gt-popup .gt-action{cursor:pointer;margin:.5em 0;padding:0 1.125em;text-decoration:none;display:block;position:relative}.gt-container .gt-popup .gt-action.is--active:before{content:"";background:var(--gt-color-main);width:.25em;height:.25em;position:absolute;top:.4375em;left:.5em}.gt-container .gt-header{display:flex;position:relative}.gt-container .gt-header-comment{flex:1;margin-left:1.25em}@media (width<=480px){.gt-container .gt-header-comment{margin-left:.875em}}.gt-container .gt-header-textarea{box-sizing:border-box;width:100%;min-height:5.125em;max-height:15em;color:inherit;overflow-wrap:break-word;resize:none;background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;outline:none;padding:.75em;font-size:.875em;transition:background-color .25s;display:block}.gt-container .gt-header-textarea:hover,.gt-container .gt-header-textarea:focus{background-color:var(--gt-color-input-bg-lighter)}.gt-container .gt-header-preview{background-color:var(--gt-color-input-bg);border:1px solid var(--gt-color-input-border);border-radius:.3125em;min-height:5.125em;padding:.75em}.gt-container .gt-header-controls{align-items:center;margin:.75em 0 0;display:flex;position:relative}.gt-container .gt-header-controls-tip{color:var(--gt-color-main);margin-right:auto;font-size:.875em;text-decoration:none}@media (width<=480px){.gt-container .gt-header-controls-tip{display:none}}.gt-container .gt-header-controls .gt-btn{margin-left:.75em}@media (width<=480px){.gt-container .gt-header-controls .gt-btn{width:100%}.gt-container .gt-header-controls .gt-btn:first-of-type{margin-left:0}}.gt-container .gt-comments{padding-top:1.25em}.gt-container .gt-comments-null{text-align:center}.gt-container .gt-comments-controls{text-align:center;margin:1.25em 0}.gt-container .gt-comment{padding:.625em 0;display:flex;position:relative}.gt-container .gt-comment-content{background-color:var(--gt-color-comment-bg);flex:1;margin-left:1.25em;padding:.75em 1em;transition:all .25s;position:relative;overflow:auto}.gt-container .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow)}@media (width<=480px){.gt-container .gt-comment-content{margin-left:.875em;padding:.625em .75em}}.gt-container .gt-comment-collapse{cursor:pointer;background:var(--gt-color-comment-collapse-bg);justify-content:center;align-items:center;padding:.375em;display:flex;position:absolute;bottom:0;left:0;right:0}.gt-container .gt-comment-collapse .gt-ico-collapse .gt-svg svg{fill:var(--gt-color-text);scale:1.2}.gt-container .gt-comment-header{margin-bottom:.5em;font-size:.875em;display:flex;position:relative}.gt-container .gt-comment-username{color:var(--gt-color-main);font-weight:500;text-decoration:none}.gt-container .gt-comment-username:hover{text-decoration:underline}.gt-container .gt-comment-date{color:var(--gt-color-sub);margin-left:.5em}.gt-container .gt-comment-date__prefix{margin-right:.25em}@media (width<=480px){.gt-container .gt-comment-date__prefix{display:none}.gt-container .gt-comment-date__time{font-size:11.2px}}.gt-container .gt-comment-actions{gap:.75em;margin-left:auto;display:flex}.gt-container .gt-comment-like,.gt-container .gt-comment-edit,.gt-container .gt-comment-reply{height:1.375em}.gt-container .gt-comment-like:hover,.gt-container .gt-comment-edit:hover,.gt-container .gt-comment-reply:hover{cursor:pointer}.gt-container .gt-comment-body{color:var(--gt-color-comment-txt);background-color:inherit}.gt-container .gt-comment-body .email-hidden-toggle a{vertical-align:middle;color:#444d56;background:#dfe2e5;border-radius:1px;height:.75em;padding:0 .5625em;font-size:.75em;font-weight:600;line-height:.375em;text-decoration:none;display:inline-block}.gt-container .gt-comment-body .email-hidden-toggle a:hover{background-color:#c6cbd1}.gt-container .gt-comment-body .email-hidden-reply{white-space:pre-wrap;display:none}.gt-container .gt-comment-body .email-hidden-reply.expanded{display:block}.gt-container .gt-comment-body .email-hidden-reply .email-signature-reply{color:#586069;border-left:.25em solid #dfe2e5;margin:.9375em 0;padding:0 .9375em}.gt-container .gt-comment-admin--highlight .gt-comment-content{box-shadow:0 .125em .75em 0 var(--gt-color-comment-shadow)}.gt-container .gt-comment-admin--highlight .gt-comment-content:hover{box-shadow:0 .125em 1.5em 0 var(--gt-color-comment-shadow-admin)}.gt-container:after{content:"";opacity:0;position:fixed}.gt-container.gt-input-focused{position:relative}.gt-container.gt-input-focused:after{z-index:9999;opacity:.8;background:#171717;transition:opacity .3s;inset:0}.gt-container.gt-input-focused .gt-header-comment{z-index:10000}.gt-container{--gt-theme-mode:light;--gt-color-text:#171717;--gt-color-main:#3b82f6;--gt-color-main-lighter:#6ca1f8;--gt-color-sub:#a1a1a1;--gt-color-loader:#999;--gt-color-error:#ff3860;--gt-color-hr:#e9e9e9;--gt-color-input-border:#0000001a;--gt-color-input-bg:#f6f6f6;--gt-color-input-bg-lighter:#fff;--gt-color-comment-bg:#f9f9f9;--gt-color-comment-shadow:#dadada;--gt-color-comment-shadow-admin:#cbcbcb;--gt-color-comment-txt:#333;--gt-color-comment-collapse-bg:linear-gradient(#f5f5f51a, #f5f5f5e6);--gt-color-link-active:#333;--gt-color-btn:#fff;--gt-color-popbg:#fff}
|
package/dist/gitalk.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ declare type Comment_2 = Pick<CommentDefine, "id" | "body" | "body_html" | "crea
|
|
|
19
19
|
|
|
20
20
|
declare type CommentDefine = Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}/comments"]["response"]["data"][number];
|
|
21
21
|
|
|
22
|
+
export declare const DEFAULT_FLIP_MOVE_OPTIONS: NonNullable<GitalkProps["flipMoveOptions"]>;
|
|
23
|
+
|
|
22
24
|
declare const Gitalk: default_2.FC<GitalkProps>;
|
|
23
25
|
export default Gitalk;
|
|
24
26
|
|
|
@@ -157,6 +159,12 @@ export declare interface GitalkProps extends Omit<React.DetailedHTMLProps<React.
|
|
|
157
159
|
* Default collapse the comment if meets the height (px)
|
|
158
160
|
*/
|
|
159
161
|
collapsedHeight?: number;
|
|
162
|
+
/**
|
|
163
|
+
* Whether to highlight the comment created by admin users.
|
|
164
|
+
*
|
|
165
|
+
* @default true
|
|
166
|
+
*/
|
|
167
|
+
highlightAdminComment?: boolean;
|
|
160
168
|
/**
|
|
161
169
|
* Callback method invoked when updating the number of comments.
|
|
162
170
|
*
|
|
@@ -178,6 +186,26 @@ export declare interface GitalkProps extends Omit<React.DetailedHTMLProps<React.
|
|
|
178
186
|
}
|
|
179
187
|
|
|
180
188
|
declare const i18nMap: {
|
|
189
|
+
en: {
|
|
190
|
+
init: string;
|
|
191
|
+
"no-found-related": string;
|
|
192
|
+
"please-contact": string;
|
|
193
|
+
"init-issue": string;
|
|
194
|
+
"leave-a-comment": string;
|
|
195
|
+
preview: string;
|
|
196
|
+
edit: string;
|
|
197
|
+
comment: string;
|
|
198
|
+
"support-markdown": string;
|
|
199
|
+
"login-with-github": string;
|
|
200
|
+
"first-comment-person": string;
|
|
201
|
+
commented: string;
|
|
202
|
+
"load-more": string;
|
|
203
|
+
counts: string;
|
|
204
|
+
"sort-asc": string;
|
|
205
|
+
"sort-desc": string;
|
|
206
|
+
logout: string;
|
|
207
|
+
anonymous: string;
|
|
208
|
+
};
|
|
181
209
|
zh: {
|
|
182
210
|
init: string;
|
|
183
211
|
"no-found-related": string;
|
|
@@ -218,6 +246,26 @@ declare const i18nMap: {
|
|
|
218
246
|
logout: string;
|
|
219
247
|
anonymous: string;
|
|
220
248
|
};
|
|
249
|
+
"zh-SG": {
|
|
250
|
+
init: string;
|
|
251
|
+
"no-found-related": string;
|
|
252
|
+
"please-contact": string;
|
|
253
|
+
"init-issue": string;
|
|
254
|
+
"leave-a-comment": string;
|
|
255
|
+
preview: string;
|
|
256
|
+
edit: string;
|
|
257
|
+
comment: string;
|
|
258
|
+
"support-markdown": string;
|
|
259
|
+
"login-with-github": string;
|
|
260
|
+
"first-comment-person": string;
|
|
261
|
+
commented: string;
|
|
262
|
+
"load-more": string;
|
|
263
|
+
counts: string;
|
|
264
|
+
"sort-asc": string;
|
|
265
|
+
"sort-desc": string;
|
|
266
|
+
logout: string;
|
|
267
|
+
anonymous: string;
|
|
268
|
+
};
|
|
221
269
|
"zh-TW": {
|
|
222
270
|
init: string;
|
|
223
271
|
"no-found-related": string;
|
|
@@ -238,7 +286,27 @@ declare const i18nMap: {
|
|
|
238
286
|
logout: string;
|
|
239
287
|
anonymous: string;
|
|
240
288
|
};
|
|
241
|
-
|
|
289
|
+
"zh-HK": {
|
|
290
|
+
init: string;
|
|
291
|
+
"no-found-related": string;
|
|
292
|
+
"please-contact": string;
|
|
293
|
+
"init-issue": string;
|
|
294
|
+
"leave-a-comment": string;
|
|
295
|
+
preview: string;
|
|
296
|
+
edit: string;
|
|
297
|
+
comment: string;
|
|
298
|
+
"support-markdown": string;
|
|
299
|
+
"login-with-github": string;
|
|
300
|
+
"first-comment-person": string;
|
|
301
|
+
commented: string;
|
|
302
|
+
"load-more": string;
|
|
303
|
+
counts: string;
|
|
304
|
+
"sort-asc": string;
|
|
305
|
+
"sort-desc": string;
|
|
306
|
+
logout: string;
|
|
307
|
+
anonymous: string;
|
|
308
|
+
};
|
|
309
|
+
"zh-MO": {
|
|
242
310
|
init: string;
|
|
243
311
|
"no-found-related": string;
|
|
244
312
|
"please-contact": string;
|
|
@@ -258,7 +326,27 @@ declare const i18nMap: {
|
|
|
258
326
|
logout: string;
|
|
259
327
|
anonymous: string;
|
|
260
328
|
};
|
|
261
|
-
|
|
329
|
+
hi: {
|
|
330
|
+
init: string;
|
|
331
|
+
"no-found-related": string;
|
|
332
|
+
"please-contact": string;
|
|
333
|
+
"init-issue": string;
|
|
334
|
+
"leave-a-comment": string;
|
|
335
|
+
preview: string;
|
|
336
|
+
edit: string;
|
|
337
|
+
comment: string;
|
|
338
|
+
"support-markdown": string;
|
|
339
|
+
"login-with-github": string;
|
|
340
|
+
"first-comment-person": string;
|
|
341
|
+
commented: string;
|
|
342
|
+
"load-more": string;
|
|
343
|
+
counts: string;
|
|
344
|
+
"sort-asc": string;
|
|
345
|
+
"sort-desc": string;
|
|
346
|
+
logout: string;
|
|
347
|
+
anonymous: string;
|
|
348
|
+
};
|
|
349
|
+
es: {
|
|
262
350
|
init: string;
|
|
263
351
|
"no-found-related": string;
|
|
264
352
|
"please-contact": string;
|
|
@@ -298,6 +386,46 @@ declare const i18nMap: {
|
|
|
298
386
|
logout: string;
|
|
299
387
|
anonymous: string;
|
|
300
388
|
};
|
|
389
|
+
ar: {
|
|
390
|
+
init: string;
|
|
391
|
+
"no-found-related": string;
|
|
392
|
+
"please-contact": string;
|
|
393
|
+
"init-issue": string;
|
|
394
|
+
"leave-a-comment": string;
|
|
395
|
+
preview: string;
|
|
396
|
+
edit: string;
|
|
397
|
+
comment: string;
|
|
398
|
+
"support-markdown": string;
|
|
399
|
+
"login-with-github": string;
|
|
400
|
+
"first-comment-person": string;
|
|
401
|
+
commented: string;
|
|
402
|
+
"load-more": string;
|
|
403
|
+
counts: string;
|
|
404
|
+
"sort-asc": string;
|
|
405
|
+
"sort-desc": string;
|
|
406
|
+
logout: string;
|
|
407
|
+
anonymous: string;
|
|
408
|
+
};
|
|
409
|
+
bn: {
|
|
410
|
+
init: string;
|
|
411
|
+
"no-found-related": string;
|
|
412
|
+
"please-contact": string;
|
|
413
|
+
"init-issue": string;
|
|
414
|
+
"leave-a-comment": string;
|
|
415
|
+
preview: string;
|
|
416
|
+
edit: string;
|
|
417
|
+
comment: string;
|
|
418
|
+
"support-markdown": string;
|
|
419
|
+
"login-with-github": string;
|
|
420
|
+
"first-comment-person": string;
|
|
421
|
+
commented: string;
|
|
422
|
+
"load-more": string;
|
|
423
|
+
counts: string;
|
|
424
|
+
"sort-asc": string;
|
|
425
|
+
"sort-desc": string;
|
|
426
|
+
logout: string;
|
|
427
|
+
anonymous: string;
|
|
428
|
+
};
|
|
301
429
|
ru: {
|
|
302
430
|
init: string;
|
|
303
431
|
"no-found-related": string;
|
|
@@ -318,7 +446,7 @@ declare const i18nMap: {
|
|
|
318
446
|
logout: string;
|
|
319
447
|
anonymous: string;
|
|
320
448
|
};
|
|
321
|
-
|
|
449
|
+
pt: {
|
|
322
450
|
init: string;
|
|
323
451
|
"no-found-related": string;
|
|
324
452
|
"please-contact": string;
|
|
@@ -338,7 +466,7 @@ declare const i18nMap: {
|
|
|
338
466
|
logout: string;
|
|
339
467
|
anonymous: string;
|
|
340
468
|
};
|
|
341
|
-
|
|
469
|
+
ur: {
|
|
342
470
|
init: string;
|
|
343
471
|
"no-found-related": string;
|
|
344
472
|
"please-contact": string;
|
|
@@ -378,7 +506,7 @@ declare const i18nMap: {
|
|
|
378
506
|
logout: string;
|
|
379
507
|
anonymous: string;
|
|
380
508
|
};
|
|
381
|
-
|
|
509
|
+
ja: {
|
|
382
510
|
init: string;
|
|
383
511
|
"no-found-related": string;
|
|
384
512
|
"please-contact": string;
|
|
@@ -398,7 +526,47 @@ declare const i18nMap: {
|
|
|
398
526
|
logout: string;
|
|
399
527
|
anonymous: string;
|
|
400
528
|
};
|
|
401
|
-
|
|
529
|
+
de: {
|
|
530
|
+
init: string;
|
|
531
|
+
"no-found-related": string;
|
|
532
|
+
"please-contact": string;
|
|
533
|
+
"init-issue": string;
|
|
534
|
+
"leave-a-comment": string;
|
|
535
|
+
preview: string;
|
|
536
|
+
edit: string;
|
|
537
|
+
comment: string;
|
|
538
|
+
"support-markdown": string;
|
|
539
|
+
"login-with-github": string;
|
|
540
|
+
"first-comment-person": string;
|
|
541
|
+
commented: string;
|
|
542
|
+
"load-more": string;
|
|
543
|
+
counts: string;
|
|
544
|
+
"sort-asc": string;
|
|
545
|
+
"sort-desc": string;
|
|
546
|
+
logout: string;
|
|
547
|
+
anonymous: string;
|
|
548
|
+
};
|
|
549
|
+
pl: {
|
|
550
|
+
init: string;
|
|
551
|
+
"no-found-related": string;
|
|
552
|
+
"please-contact": string;
|
|
553
|
+
"init-issue": string;
|
|
554
|
+
"leave-a-comment": string;
|
|
555
|
+
preview: string;
|
|
556
|
+
edit: string;
|
|
557
|
+
comment: string;
|
|
558
|
+
"support-markdown": string;
|
|
559
|
+
"login-with-github": string;
|
|
560
|
+
"first-comment-person": string;
|
|
561
|
+
commented: string;
|
|
562
|
+
"load-more": string;
|
|
563
|
+
counts: string;
|
|
564
|
+
"sort-asc": string;
|
|
565
|
+
"sort-desc": string;
|
|
566
|
+
logout: string;
|
|
567
|
+
anonymous: string;
|
|
568
|
+
};
|
|
569
|
+
fa: {
|
|
402
570
|
init: string;
|
|
403
571
|
"no-found-related": string;
|
|
404
572
|
"please-contact": string;
|