@scalar/cli 1.9.6 → 1.9.7
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.md +1 -1
- package/docs.html +75 -66
- package/index.js +156 -454
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -648,7 +648,7 @@ Create a new SDK.
|
|
|
648
648
|
Options:
|
|
649
649
|
-a, --api <api> Registry API slug
|
|
650
650
|
-n, --namespace <namespace> Team namespace
|
|
651
|
-
-l, --language <language> Language of your SDK (choices: "typescript", "python", "csharp", "java", "ruby", "php", "go")
|
|
651
|
+
-l, --language <language> Language of your SDK (choices: "typescript", "python", "csharp", "java", "ruby", "php", "go", "rust", "kotlin", "swift", "cpp", "dart")
|
|
652
652
|
-h, --help display help for command
|
|
653
653
|
```
|
|
654
654
|
|
package/docs.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<title>Scalar CLI Documentation</title>
|
|
9
9
|
<style>
|
|
10
10
|
/* Base CSS will be injected here */
|
|
11
|
-
/* ../../node_modules/.pnpm/@scalar+themes@0.15.
|
|
11
|
+
/* ../../node_modules/.pnpm/@scalar+themes@0.15.6/node_modules/@scalar/themes/dist/style.css */
|
|
12
12
|
@layer scalar-base, scalar-theme;
|
|
13
13
|
@layer scalar-base {
|
|
14
14
|
body {
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
--scalar-scrollbar-color: rgba(0, 0, 0, 0.18);
|
|
268
268
|
--scalar-button-1: rgba(0, 0, 0, 1);
|
|
269
269
|
--scalar-button-1-hover: rgba(0, 0, 0, 0.8);
|
|
270
|
-
--scalar-button-1-color:
|
|
270
|
+
--scalar-button-1-color: #fff;
|
|
271
271
|
--scalar-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);
|
|
272
272
|
--scalar-shadow-2:
|
|
273
273
|
rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
--scalar-link-color-hover: var(--scalar-link-color);
|
|
351
351
|
--scalar-button-1: rgba(0, 0, 0, 1);
|
|
352
352
|
--scalar-button-1-hover: rgba(0, 0, 0, 0.8);
|
|
353
|
-
--scalar-button-1-color:
|
|
353
|
+
--scalar-button-1-color: #fff;
|
|
354
354
|
--scalar-tooltip-background: color-mix(in srgb, #1a1a1a, transparent 10%);
|
|
355
355
|
--scalar-tooltip-color: color-mix(in srgb, #fff, transparent 15%);
|
|
356
356
|
--scalar-color-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-color-1) 20%);
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
-
/* ../../node_modules/.pnpm/@scalar+themes@0.15.
|
|
401
|
+
/* ../../node_modules/.pnpm/@scalar+themes@0.15.6/node_modules/@scalar/themes/dist/fonts/fonts.css */
|
|
402
402
|
@font-face {
|
|
403
403
|
font-family: "Inter";
|
|
404
404
|
font-style: normal;
|
|
@@ -1536,7 +1536,7 @@ body {
|
|
|
1536
1536
|
padding: 0 0 44px;
|
|
1537
1537
|
max-width: var(--scalar-container-width);
|
|
1538
1538
|
}
|
|
1539
|
-
.t-editor :where(.
|
|
1539
|
+
.t-editor :where(.prose-content) > * + * {
|
|
1540
1540
|
margin-top: var(--scalar-block-spacing);
|
|
1541
1541
|
}
|
|
1542
1542
|
@media (max-width: 1000px) {
|
|
@@ -2094,6 +2094,17 @@ h1.t-editor__heading {
|
|
|
2094
2094
|
.t-editor__heading.t-editor__standard-heading {
|
|
2095
2095
|
margin-top: 0;
|
|
2096
2096
|
}
|
|
2097
|
+
.prose-content > * + h2.t-editor__standard-heading {
|
|
2098
|
+
margin-top: 44px;
|
|
2099
|
+
}
|
|
2100
|
+
.prose-content > * + h3.t-editor__standard-heading,
|
|
2101
|
+
.prose-content > * + h4.t-editor__standard-heading {
|
|
2102
|
+
margin-top: 28px;
|
|
2103
|
+
}
|
|
2104
|
+
.prose-content > * + h5.t-editor__standard-heading,
|
|
2105
|
+
.prose-content > * + h6.t-editor__standard-heading {
|
|
2106
|
+
margin-top: 24px;
|
|
2107
|
+
}
|
|
2097
2108
|
|
|
2098
2109
|
/* ../../packages/css/src/guides/text-extensions/list.css */
|
|
2099
2110
|
.t-editor__list {
|
|
@@ -2397,7 +2408,7 @@ ul.t-editor__list > * > li::before {
|
|
|
2397
2408
|
.custom-tabs-container .custom-container-content > :nth-child(2) > :nth-child(2) {
|
|
2398
2409
|
margin-top: 0;
|
|
2399
2410
|
}
|
|
2400
|
-
.custom-tabs-container .custom-tabs-content > div
|
|
2411
|
+
.custom-tabs-container .custom-tabs-content > div > :first-child {
|
|
2401
2412
|
margin-top: 0;
|
|
2402
2413
|
}
|
|
2403
2414
|
.custom-tabs-container input:nth-of-type(1):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(1),
|
|
@@ -2994,9 +3005,6 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
2994
3005
|
line-height: var(--line-height);
|
|
2995
3006
|
}
|
|
2996
3007
|
.t-editor__card .card-content__text {
|
|
2997
|
-
display: flex;
|
|
2998
|
-
flex-direction: column;
|
|
2999
|
-
gap: var(--scalar-block-spacing);
|
|
3000
3008
|
color: var(--scalar-color-2);
|
|
3001
3009
|
}
|
|
3002
3010
|
.t-editor__card .card-content__text:empty,
|
|
@@ -3029,6 +3037,7 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
3029
3037
|
.t-editor__card .card-content > .t-editor__icon {
|
|
3030
3038
|
width: auto;
|
|
3031
3039
|
max-width: 100%;
|
|
3040
|
+
align-self: start;
|
|
3032
3041
|
}
|
|
3033
3042
|
.t-editor__card .card-content__title > .t-editor__icon {
|
|
3034
3043
|
height: var(--scalar-card-icon-size);
|
|
@@ -3765,7 +3774,7 @@ blockquote.t-editor__quote > * {
|
|
|
3765
3774
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3766
3775
|
</svg></button>
|
|
3767
3776
|
</h2>
|
|
3768
|
-
<div id="
|
|
3777
|
+
<div id="869wMehhz7XdrrzcI0Vrb" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3769
3778
|
<pre style="
|
|
3770
3779
|
--line-digits: 2;
|
|
3771
3780
|
--line-number-start: -1;
|
|
@@ -3788,7 +3797,7 @@ blockquote.t-editor__quote > * {
|
|
|
3788
3797
|
</svg></button>
|
|
3789
3798
|
</h2>
|
|
3790
3799
|
<p class="t-editor__paragraph">If you really want to become friends you should install the CLI:</p>
|
|
3791
|
-
<div id="
|
|
3800
|
+
<div id="0ujN34GBpxya4YxoZ5c3F" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3792
3801
|
<pre style="
|
|
3793
3802
|
--line-digits: 2;
|
|
3794
3803
|
--line-number-start: -1;
|
|
@@ -3812,7 +3821,7 @@ blockquote.t-editor__quote > * {
|
|
|
3812
3821
|
</svg></button>
|
|
3813
3822
|
</h3>
|
|
3814
3823
|
<p class="t-editor__paragraph">There’s another <code inline="true" class="t-editor__inline-code">scalar</code> CLI, which is bundled with <code inline="true" class="t-editor__inline-code">git</code>. If you run into naming conflicts, but never use the other CLI anyway, you can replace it like this:</p>
|
|
3815
|
-
<div id="
|
|
3824
|
+
<div id="euYhGL9Ks3LKwTFa5nkgV" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3816
3825
|
<pre style="
|
|
3817
3826
|
--line-digits: 2;
|
|
3818
3827
|
--line-number-start: -1;
|
|
@@ -3826,7 +3835,7 @@ blockquote.t-editor__quote > * {
|
|
|
3826
3835
|
</svg></button>
|
|
3827
3836
|
</div>
|
|
3828
3837
|
<p class="t-editor__paragraph">Or, if you want to keep using the other <code inline="true" class="t-editor__inline-code">scalar</code> CLI, you can just stick to <code inline="true" class="t-editor__inline-code">npx</code> (or <code inline="true" class="t-editor__inline-code">pnpm dlx</code>):</p>
|
|
3829
|
-
<div id="
|
|
3838
|
+
<div id="LDdQkZMyQE9rMVNdAd6iV" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3830
3839
|
<pre style="
|
|
3831
3840
|
--line-digits: 2;
|
|
3832
3841
|
--line-number-start: -1;
|
|
@@ -3852,7 +3861,7 @@ blockquote.t-editor__quote > * {
|
|
|
3852
3861
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3853
3862
|
</svg></button>
|
|
3854
3863
|
</h2>
|
|
3855
|
-
<div id="
|
|
3864
|
+
<div id="Xo7RE2ZjhriL9lP26N9Fp" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3856
3865
|
<pre style="
|
|
3857
3866
|
--line-digits: 2;
|
|
3858
3867
|
--line-number-start: -1;
|
|
@@ -3892,7 +3901,7 @@ blockquote.t-editor__quote > * {
|
|
|
3892
3901
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3893
3902
|
</svg></button>
|
|
3894
3903
|
</h3>
|
|
3895
|
-
<div id="
|
|
3904
|
+
<div id="lf682FTrQwvnlOVAA8YvI" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3896
3905
|
<pre style="
|
|
3897
3906
|
--line-digits: 2;
|
|
3898
3907
|
--line-number-start: -1;
|
|
@@ -3922,7 +3931,7 @@ blockquote.t-editor__quote > * {
|
|
|
3922
3931
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3923
3932
|
</svg></button>
|
|
3924
3933
|
</h4>
|
|
3925
|
-
<div id="
|
|
3934
|
+
<div id="LRCAR5D9WpeENA89SAtYa" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3926
3935
|
<pre style="
|
|
3927
3936
|
--line-digits: 2;
|
|
3928
3937
|
--line-number-start: -1;
|
|
@@ -3950,7 +3959,7 @@ blockquote.t-editor__quote > * {
|
|
|
3950
3959
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3951
3960
|
</svg></button>
|
|
3952
3961
|
</h3>
|
|
3953
|
-
<div id="
|
|
3962
|
+
<div id="ahLB23eBbi6Tpvrs3MPe7" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3954
3963
|
<pre style="
|
|
3955
3964
|
--line-digits: 2;
|
|
3956
3965
|
--line-number-start: -1;
|
|
@@ -3977,7 +3986,7 @@ blockquote.t-editor__quote > * {
|
|
|
3977
3986
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
3978
3987
|
</svg></button>
|
|
3979
3988
|
</h3>
|
|
3980
|
-
<div id="
|
|
3989
|
+
<div id="vOhb4GXmOS1inIYgwqAjl" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3981
3990
|
<pre style="
|
|
3982
3991
|
--line-digits: 2;
|
|
3983
3992
|
--line-number-start: -1;
|
|
@@ -4010,7 +4019,7 @@ blockquote.t-editor__quote > * {
|
|
|
4010
4019
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4011
4020
|
</svg></button>
|
|
4012
4021
|
</h4>
|
|
4013
|
-
<div id="
|
|
4022
|
+
<div id="Jre6bIS87rjux19w52F61" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4014
4023
|
<pre style="
|
|
4015
4024
|
--line-digits: 2;
|
|
4016
4025
|
--line-number-start: -1;
|
|
@@ -4040,7 +4049,7 @@ blockquote.t-editor__quote > * {
|
|
|
4040
4049
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4041
4050
|
</svg></button>
|
|
4042
4051
|
</h4>
|
|
4043
|
-
<div id="
|
|
4052
|
+
<div id="lVg9RCuqlgStIQeaAx9nI" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4044
4053
|
<pre style="
|
|
4045
4054
|
--line-digits: 2;
|
|
4046
4055
|
--line-number-start: -1;
|
|
@@ -4067,7 +4076,7 @@ blockquote.t-editor__quote > * {
|
|
|
4067
4076
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4068
4077
|
</svg></button>
|
|
4069
4078
|
</h4>
|
|
4070
|
-
<div id="
|
|
4079
|
+
<div id="UGhkvaYO2JFrpkKYCNJJf" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4071
4080
|
<pre style="
|
|
4072
4081
|
--line-digits: 2;
|
|
4073
4082
|
--line-number-start: -1;
|
|
@@ -4094,7 +4103,7 @@ blockquote.t-editor__quote > * {
|
|
|
4094
4103
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4095
4104
|
</svg></button>
|
|
4096
4105
|
</h3>
|
|
4097
|
-
<div id="
|
|
4106
|
+
<div id="X3E9mE5oQurHvvJTvzOXx" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4098
4107
|
<pre style="
|
|
4099
4108
|
--line-digits: 2;
|
|
4100
4109
|
--line-number-start: -1;
|
|
@@ -4137,7 +4146,7 @@ blockquote.t-editor__quote > * {
|
|
|
4137
4146
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4138
4147
|
</svg></button>
|
|
4139
4148
|
</h4>
|
|
4140
|
-
<div id="
|
|
4149
|
+
<div id="wL1gXbkaeotzbC79qk3Wl" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4141
4150
|
<pre style="
|
|
4142
4151
|
--line-digits: 2;
|
|
4143
4152
|
--line-number-start: -1;
|
|
@@ -4171,7 +4180,7 @@ blockquote.t-editor__quote > * {
|
|
|
4171
4180
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4172
4181
|
</svg></button>
|
|
4173
4182
|
</h4>
|
|
4174
|
-
<div id="
|
|
4183
|
+
<div id="lOMsTCcS4XyQ7uMaRkqnF" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4175
4184
|
<pre style="
|
|
4176
4185
|
--line-digits: 2;
|
|
4177
4186
|
--line-number-start: -1;
|
|
@@ -4202,7 +4211,7 @@ blockquote.t-editor__quote > * {
|
|
|
4202
4211
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4203
4212
|
</svg></button>
|
|
4204
4213
|
</h4>
|
|
4205
|
-
<div id="
|
|
4214
|
+
<div id="vTTgDCeCrg0bhWgya1bRl" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4206
4215
|
<pre style="
|
|
4207
4216
|
--line-digits: 2;
|
|
4208
4217
|
--line-number-start: -1;
|
|
@@ -4234,7 +4243,7 @@ blockquote.t-editor__quote > * {
|
|
|
4234
4243
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4235
4244
|
</svg></button>
|
|
4236
4245
|
</h4>
|
|
4237
|
-
<div id="
|
|
4246
|
+
<div id="Ld3ASMjYIyVmmV2rIBptX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4238
4247
|
<pre style="
|
|
4239
4248
|
--line-digits: 2;
|
|
4240
4249
|
--line-number-start: -1;
|
|
@@ -4265,7 +4274,7 @@ blockquote.t-editor__quote > * {
|
|
|
4265
4274
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4266
4275
|
</svg></button>
|
|
4267
4276
|
</h4>
|
|
4268
|
-
<div id="
|
|
4277
|
+
<div id="nW6jVrCCVa3O4m7xwOt94" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4269
4278
|
<pre style="
|
|
4270
4279
|
--line-digits: 2;
|
|
4271
4280
|
--line-number-start: -1;
|
|
@@ -4297,7 +4306,7 @@ blockquote.t-editor__quote > * {
|
|
|
4297
4306
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4298
4307
|
</svg></button>
|
|
4299
4308
|
</h4>
|
|
4300
|
-
<div id="
|
|
4309
|
+
<div id="ERWCUmo8zIEbalzhKPA8X" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4301
4310
|
<pre style="
|
|
4302
4311
|
--line-digits: 2;
|
|
4303
4312
|
--line-number-start: -1;
|
|
@@ -4328,7 +4337,7 @@ blockquote.t-editor__quote > * {
|
|
|
4328
4337
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4329
4338
|
</svg></button>
|
|
4330
4339
|
</h4>
|
|
4331
|
-
<div id="
|
|
4340
|
+
<div id="RAfr3bQ4Ynj82z3mp1LOB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4332
4341
|
<pre style="
|
|
4333
4342
|
--line-digits: 2;
|
|
4334
4343
|
--line-number-start: -1;
|
|
@@ -4361,7 +4370,7 @@ blockquote.t-editor__quote > * {
|
|
|
4361
4370
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4362
4371
|
</svg></button>
|
|
4363
4372
|
</h4>
|
|
4364
|
-
<div id="
|
|
4373
|
+
<div id="DK5Bnf7ZWA6WvoS13pnqX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4365
4374
|
<pre style="
|
|
4366
4375
|
--line-digits: 2;
|
|
4367
4376
|
--line-number-start: -1;
|
|
@@ -4394,7 +4403,7 @@ blockquote.t-editor__quote > * {
|
|
|
4394
4403
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4395
4404
|
</svg></button>
|
|
4396
4405
|
</h4>
|
|
4397
|
-
<div id="
|
|
4406
|
+
<div id="SMeBRWM3A4o7XQv6HhEoD" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4398
4407
|
<pre style="
|
|
4399
4408
|
--line-digits: 2;
|
|
4400
4409
|
--line-number-start: -1;
|
|
@@ -4425,7 +4434,7 @@ blockquote.t-editor__quote > * {
|
|
|
4425
4434
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4426
4435
|
</svg></button>
|
|
4427
4436
|
</h4>
|
|
4428
|
-
<div id="
|
|
4437
|
+
<div id="32JBm3VMuErKPswI28VF5" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4429
4438
|
<pre style="
|
|
4430
4439
|
--line-digits: 2;
|
|
4431
4440
|
--line-number-start: -1;
|
|
@@ -4455,7 +4464,7 @@ blockquote.t-editor__quote > * {
|
|
|
4455
4464
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4456
4465
|
</svg></button>
|
|
4457
4466
|
</h4>
|
|
4458
|
-
<div id="
|
|
4467
|
+
<div id="rOmz3WkCzBReUSBQb2I9E" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4459
4468
|
<pre style="
|
|
4460
4469
|
--line-digits: 2;
|
|
4461
4470
|
--line-number-start: -1;
|
|
@@ -4484,7 +4493,7 @@ blockquote.t-editor__quote > * {
|
|
|
4484
4493
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4485
4494
|
</svg></button>
|
|
4486
4495
|
</h4>
|
|
4487
|
-
<div id="
|
|
4496
|
+
<div id="sQ8m4zevvYdLNXWCE6zjn" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4488
4497
|
<pre style="
|
|
4489
4498
|
--line-digits: 2;
|
|
4490
4499
|
--line-number-start: -1;
|
|
@@ -4515,7 +4524,7 @@ blockquote.t-editor__quote > * {
|
|
|
4515
4524
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4516
4525
|
</svg></button>
|
|
4517
4526
|
</h4>
|
|
4518
|
-
<div id="
|
|
4527
|
+
<div id="igiiJHrjvIrOIja2TqDEJ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4519
4528
|
<pre style="
|
|
4520
4529
|
--line-digits: 2;
|
|
4521
4530
|
--line-number-start: -1;
|
|
@@ -4546,7 +4555,7 @@ blockquote.t-editor__quote > * {
|
|
|
4546
4555
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4547
4556
|
</svg></button>
|
|
4548
4557
|
</h3>
|
|
4549
|
-
<div id="
|
|
4558
|
+
<div id="j71Q0YSYKA3mcBVHbgLqe" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4550
4559
|
<pre style="
|
|
4551
4560
|
--line-digits: 2;
|
|
4552
4561
|
--line-number-start: -1;
|
|
@@ -4582,7 +4591,7 @@ blockquote.t-editor__quote > * {
|
|
|
4582
4591
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4583
4592
|
</svg></button>
|
|
4584
4593
|
</h4>
|
|
4585
|
-
<div id="
|
|
4594
|
+
<div id="V5IHUOdxMU3dRo6Jj10GD" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4586
4595
|
<pre style="
|
|
4587
4596
|
--line-digits: 2;
|
|
4588
4597
|
--line-number-start: -1;
|
|
@@ -4611,7 +4620,7 @@ blockquote.t-editor__quote > * {
|
|
|
4611
4620
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4612
4621
|
</svg></button>
|
|
4613
4622
|
</h4>
|
|
4614
|
-
<div id="
|
|
4623
|
+
<div id="J2dEigbZBu7fYSLtAQf8Z" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4615
4624
|
<pre style="
|
|
4616
4625
|
--line-digits: 2;
|
|
4617
4626
|
--line-number-start: -1;
|
|
@@ -4641,7 +4650,7 @@ blockquote.t-editor__quote > * {
|
|
|
4641
4650
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4642
4651
|
</svg></button>
|
|
4643
4652
|
</h4>
|
|
4644
|
-
<div id="
|
|
4653
|
+
<div id="x6vx1NAXjfBrgA0Bth012" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4645
4654
|
<pre style="
|
|
4646
4655
|
--line-digits: 2;
|
|
4647
4656
|
--line-number-start: -1;
|
|
@@ -4670,7 +4679,7 @@ blockquote.t-editor__quote > * {
|
|
|
4670
4679
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4671
4680
|
</svg></button>
|
|
4672
4681
|
</h4>
|
|
4673
|
-
<div id="
|
|
4682
|
+
<div id="EULVdGI3WcOn8FK8eaxnE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4674
4683
|
<pre style="
|
|
4675
4684
|
--line-digits: 2;
|
|
4676
4685
|
--line-number-start: -1;
|
|
@@ -4705,7 +4714,7 @@ blockquote.t-editor__quote > * {
|
|
|
4705
4714
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4706
4715
|
</svg></button>
|
|
4707
4716
|
</h4>
|
|
4708
|
-
<div id="
|
|
4717
|
+
<div id="fX2wEUSzjFIcm5gPcFEmR" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4709
4718
|
<pre style="
|
|
4710
4719
|
--line-digits: 2;
|
|
4711
4720
|
--line-number-start: -1;
|
|
@@ -4736,7 +4745,7 @@ blockquote.t-editor__quote > * {
|
|
|
4736
4745
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4737
4746
|
</svg></button>
|
|
4738
4747
|
</h4>
|
|
4739
|
-
<div id="
|
|
4748
|
+
<div id="EOdNBx7Nm5CvDHAkqnGJF" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4740
4749
|
<pre style="
|
|
4741
4750
|
--line-digits: 2;
|
|
4742
4751
|
--line-number-start: -1;
|
|
@@ -4766,7 +4775,7 @@ blockquote.t-editor__quote > * {
|
|
|
4766
4775
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4767
4776
|
</svg></button>
|
|
4768
4777
|
</h3>
|
|
4769
|
-
<div id="
|
|
4778
|
+
<div id="vqhaDPaDwMvIEUdZzRGLh" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4770
4779
|
<pre style="
|
|
4771
4780
|
--line-digits: 2;
|
|
4772
4781
|
--line-number-start: -1;
|
|
@@ -4801,7 +4810,7 @@ blockquote.t-editor__quote > * {
|
|
|
4801
4810
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4802
4811
|
</svg></button>
|
|
4803
4812
|
</h4>
|
|
4804
|
-
<div id="
|
|
4813
|
+
<div id="H2mb3PKDHFkQIC8jGbIG1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4805
4814
|
<pre style="
|
|
4806
4815
|
--line-digits: 2;
|
|
4807
4816
|
--line-number-start: -1;
|
|
@@ -4841,7 +4850,7 @@ blockquote.t-editor__quote > * {
|
|
|
4841
4850
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4842
4851
|
</svg></button>
|
|
4843
4852
|
</h4>
|
|
4844
|
-
<div id="
|
|
4853
|
+
<div id="EQzyf4ERzMuA7PLIFc5Dx" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4845
4854
|
<pre style="
|
|
4846
4855
|
--line-digits: 2;
|
|
4847
4856
|
--line-number-start: -1;
|
|
@@ -4874,7 +4883,7 @@ blockquote.t-editor__quote > * {
|
|
|
4874
4883
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4875
4884
|
</svg></button>
|
|
4876
4885
|
</h4>
|
|
4877
|
-
<div id="
|
|
4886
|
+
<div id="2u6rzLkeeu0L3vv5cj0Vs" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4878
4887
|
<pre style="
|
|
4879
4888
|
--line-digits: 2;
|
|
4880
4889
|
--line-number-start: -1;
|
|
@@ -4905,7 +4914,7 @@ blockquote.t-editor__quote > * {
|
|
|
4905
4914
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4906
4915
|
</svg></button>
|
|
4907
4916
|
</h4>
|
|
4908
|
-
<div id="
|
|
4917
|
+
<div id="9rlzFTKYEAdLNau3qAMYN" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4909
4918
|
<pre style="
|
|
4910
4919
|
--line-digits: 2;
|
|
4911
4920
|
--line-number-start: -1;
|
|
@@ -4933,7 +4942,7 @@ blockquote.t-editor__quote > * {
|
|
|
4933
4942
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4934
4943
|
</svg></button>
|
|
4935
4944
|
</h4>
|
|
4936
|
-
<div id="
|
|
4945
|
+
<div id="OGk4kFei8NmNF65eISkAp" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4937
4946
|
<pre style="
|
|
4938
4947
|
--line-digits: 2;
|
|
4939
4948
|
--line-number-start: -1;
|
|
@@ -4967,7 +4976,7 @@ blockquote.t-editor__quote > * {
|
|
|
4967
4976
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
4968
4977
|
</svg></button>
|
|
4969
4978
|
</h3>
|
|
4970
|
-
<div id="
|
|
4979
|
+
<div id="4rbp5NBYTyIVKY4zzRlEB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4971
4980
|
<pre style="
|
|
4972
4981
|
--line-digits: 2;
|
|
4973
4982
|
--line-number-start: -1;
|
|
@@ -4999,7 +5008,7 @@ blockquote.t-editor__quote > * {
|
|
|
4999
5008
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5000
5009
|
</svg></button>
|
|
5001
5010
|
</h4>
|
|
5002
|
-
<div id="
|
|
5011
|
+
<div id="FIzyVta7WcfPQvVV9aSB2" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5003
5012
|
<pre style="
|
|
5004
5013
|
--line-digits: 2;
|
|
5005
5014
|
--line-number-start: -1;
|
|
@@ -5026,7 +5035,7 @@ blockquote.t-editor__quote > * {
|
|
|
5026
5035
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5027
5036
|
</svg></button>
|
|
5028
5037
|
</h4>
|
|
5029
|
-
<div id="
|
|
5038
|
+
<div id="EMwpIKK7GokUaGVAYVcgB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5030
5039
|
<pre style="
|
|
5031
5040
|
--line-digits: 2;
|
|
5032
5041
|
--line-number-start: -1;
|
|
@@ -5054,7 +5063,7 @@ blockquote.t-editor__quote > * {
|
|
|
5054
5063
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5055
5064
|
</svg></button>
|
|
5056
5065
|
</h3>
|
|
5057
|
-
<div id="
|
|
5066
|
+
<div id="M2p5bDlqCfDopevL0tw7J" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5058
5067
|
<pre style="
|
|
5059
5068
|
--line-digits: 2;
|
|
5060
5069
|
--line-number-start: -1;
|
|
@@ -5089,7 +5098,7 @@ blockquote.t-editor__quote > * {
|
|
|
5089
5098
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5090
5099
|
</svg></button>
|
|
5091
5100
|
</h4>
|
|
5092
|
-
<div id="
|
|
5101
|
+
<div id="VJQ177vhfPkmZzsgd6jWw" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5093
5102
|
<pre style="
|
|
5094
5103
|
--line-digits: 2;
|
|
5095
5104
|
--line-number-start: -1;
|
|
@@ -5117,7 +5126,7 @@ blockquote.t-editor__quote > * {
|
|
|
5117
5126
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5118
5127
|
</svg></button>
|
|
5119
5128
|
</h4>
|
|
5120
|
-
<div id="
|
|
5129
|
+
<div id="cmnBOHGeMza2PYNakogzP" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5121
5130
|
<pre style="
|
|
5122
5131
|
--line-digits: 2;
|
|
5123
5132
|
--line-number-start: -1;
|
|
@@ -5128,7 +5137,7 @@ blockquote.t-editor__quote > * {
|
|
|
5128
5137
|
<span class="t-code__line" data-line-number="4">Options:</span>
|
|
5129
5138
|
<span class="t-code__line" data-line-number="5"> -a, --api <api> Registry API slug</span>
|
|
5130
5139
|
<span class="t-code__line" data-line-number="6"> -n, --namespace <namespace> Team namespace</span>
|
|
5131
|
-
<span class="t-code__line" data-line-number="7"> -l, --language <language> Language of your SDK (choices: "typescript", "python", "csharp", "java", "ruby", "php", "go")</span>
|
|
5140
|
+
<span class="t-code__line" data-line-number="7"> -l, --language <language> Language of your SDK (choices: "typescript", "python", "csharp", "java", "ruby", "php", "go", "rust", "kotlin", "swift", "cpp", "dart")</span>
|
|
5132
5141
|
<span class="t-code__line" data-line-number="8"> -h, --help display help for command</span>
|
|
5133
5142
|
</code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
|
|
5134
5143
|
<svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
|
|
@@ -5147,7 +5156,7 @@ blockquote.t-editor__quote > * {
|
|
|
5147
5156
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5148
5157
|
</svg></button>
|
|
5149
5158
|
</h4>
|
|
5150
|
-
<div id="
|
|
5159
|
+
<div id="31bFClRj6x6sGw2yPqvSK" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5151
5160
|
<pre style="
|
|
5152
5161
|
--line-digits: 2;
|
|
5153
5162
|
--line-number-start: -1;
|
|
@@ -5178,7 +5187,7 @@ blockquote.t-editor__quote > * {
|
|
|
5178
5187
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5179
5188
|
</svg></button>
|
|
5180
5189
|
</h4>
|
|
5181
|
-
<div id="
|
|
5190
|
+
<div id="cIJuR6UREWdF1aHtErw9J" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5182
5191
|
<pre style="
|
|
5183
5192
|
--line-digits: 2;
|
|
5184
5193
|
--line-number-start: -1;
|
|
@@ -5207,7 +5216,7 @@ blockquote.t-editor__quote > * {
|
|
|
5207
5216
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5208
5217
|
</svg></button>
|
|
5209
5218
|
</h4>
|
|
5210
|
-
<div id="
|
|
5219
|
+
<div id="KIcEqBaRLh4Rftt9tMu6p" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5211
5220
|
<pre style="
|
|
5212
5221
|
--line-digits: 2;
|
|
5213
5222
|
--line-number-start: -1;
|
|
@@ -5237,7 +5246,7 @@ blockquote.t-editor__quote > * {
|
|
|
5237
5246
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5238
5247
|
</svg></button>
|
|
5239
5248
|
</h3>
|
|
5240
|
-
<div id="
|
|
5249
|
+
<div id="m3PNvuSClMuVKLxHMbXK7" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5241
5250
|
<pre style="
|
|
5242
5251
|
--line-digits: 2;
|
|
5243
5252
|
--line-number-start: -1;
|
|
@@ -5271,7 +5280,7 @@ blockquote.t-editor__quote > * {
|
|
|
5271
5280
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5272
5281
|
</svg></button>
|
|
5273
5282
|
</h4>
|
|
5274
|
-
<div id="
|
|
5283
|
+
<div id="2NfHTtZM7V4Mtv5q5zUSf" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5275
5284
|
<pre style="
|
|
5276
5285
|
--line-digits: 2;
|
|
5277
5286
|
--line-number-start: -1;
|
|
@@ -5300,7 +5309,7 @@ blockquote.t-editor__quote > * {
|
|
|
5300
5309
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5301
5310
|
</svg></button>
|
|
5302
5311
|
</h4>
|
|
5303
|
-
<div id="
|
|
5312
|
+
<div id="fylRJgQ7ULrIgXq9CfqFl" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5304
5313
|
<pre style="
|
|
5305
5314
|
--line-digits: 2;
|
|
5306
5315
|
--line-number-start: -1;
|
|
@@ -5332,7 +5341,7 @@ blockquote.t-editor__quote > * {
|
|
|
5332
5341
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5333
5342
|
</svg></button>
|
|
5334
5343
|
</h4>
|
|
5335
|
-
<div id="
|
|
5344
|
+
<div id="0TGZYN9NjtXuvAvilyHHv" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5336
5345
|
<pre style="
|
|
5337
5346
|
--line-digits: 2;
|
|
5338
5347
|
--line-number-start: -1;
|
|
@@ -5360,7 +5369,7 @@ blockquote.t-editor__quote > * {
|
|
|
5360
5369
|
<path d="M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z"></path>
|
|
5361
5370
|
</svg></button>
|
|
5362
5371
|
</h4>
|
|
5363
|
-
<div id="
|
|
5372
|
+
<div id="Kx5aSojNn87EWZwCo8NpQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5364
5373
|
<pre style="
|
|
5365
5374
|
--line-digits: 2;
|
|
5366
5375
|
--line-number-start: -1;
|
|
@@ -5400,7 +5409,7 @@ blockquote.t-editor__quote > * {
|
|
|
5400
5409
|
</svg></button>
|
|
5401
5410
|
</h2>
|
|
5402
5411
|
<p class="t-editor__paragraph">To validate your OpenAPI file in GitHub Actions, add this workflow:</p>
|
|
5403
|
-
<div id="
|
|
5412
|
+
<div id="9FI7D00Muu5ram3dk6WU9" class="t-editor__code-container" data-lang="yml" style="position: relative;">
|
|
5404
5413
|
<pre style="
|
|
5405
5414
|
--line-digits: 2;
|
|
5406
5415
|
--line-number-start: -1;
|
|
@@ -5447,7 +5456,7 @@ blockquote.t-editor__quote > * {
|
|
|
5447
5456
|
</svg></button>
|
|
5448
5457
|
</h2>
|
|
5449
5458
|
<p class="t-editor__paragraph">Set up the development environment:</p>
|
|
5450
|
-
<div id="
|
|
5459
|
+
<div id="56WBvHaL2Oy8UgA7tbg17" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5451
5460
|
<pre style="
|
|
5452
5461
|
--line-digits: 2;
|
|
5453
5462
|
--line-number-start: -1;
|
|
@@ -5462,7 +5471,7 @@ blockquote.t-editor__quote > * {
|
|
|
5462
5471
|
</svg></button>
|
|
5463
5472
|
</div>
|
|
5464
5473
|
<p class="t-editor__paragraph">To symlink the package and use it globally on your machine:</p>
|
|
5465
|
-
<div id="
|
|
5474
|
+
<div id="Yuutjixj33xgAI0vtvqse" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5466
5475
|
<pre style="
|
|
5467
5476
|
--line-digits: 2;
|
|
5468
5477
|
--line-number-start: -1;
|