@scalar/cli 1.9.6 → 1.9.8
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 +81 -66
- package/index.js +186 -454
- package/package.json +11 -11
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;
|
|
@@ -657,6 +657,7 @@ body {
|
|
|
657
657
|
--scalar-header-height: 50px;
|
|
658
658
|
--scalar-sidebar-width: 280px;
|
|
659
659
|
--scalar-container-width: 680px;
|
|
660
|
+
--scalar-container-gutter: 50px;
|
|
660
661
|
--scalar-card-icon-size: 20px;
|
|
661
662
|
--scalar-card-icon-size-xl: 32px;
|
|
662
663
|
--scalar-card-padding: 16px;
|
|
@@ -669,6 +670,11 @@ body {
|
|
|
669
670
|
--scalar-font-size-1: 24px;
|
|
670
671
|
--scalar-toc-width: 280px;
|
|
671
672
|
}
|
|
673
|
+
@media (max-width: 1000px) {
|
|
674
|
+
:root {
|
|
675
|
+
--scalar-container-gutter: 12px;
|
|
676
|
+
}
|
|
677
|
+
}
|
|
672
678
|
|
|
673
679
|
/* ../../packages/css/src/tippy.css */
|
|
674
680
|
.tippy-box[data-animation=fade][data-state=hidden] {
|
|
@@ -1536,7 +1542,7 @@ body {
|
|
|
1536
1542
|
padding: 0 0 44px;
|
|
1537
1543
|
max-width: var(--scalar-container-width);
|
|
1538
1544
|
}
|
|
1539
|
-
.t-editor :where(.
|
|
1545
|
+
.t-editor :where(.prose-content) > * + * {
|
|
1540
1546
|
margin-top: var(--scalar-block-spacing);
|
|
1541
1547
|
}
|
|
1542
1548
|
@media (max-width: 1000px) {
|
|
@@ -2094,6 +2100,17 @@ h1.t-editor__heading {
|
|
|
2094
2100
|
.t-editor__heading.t-editor__standard-heading {
|
|
2095
2101
|
margin-top: 0;
|
|
2096
2102
|
}
|
|
2103
|
+
.prose-content > * + h2.t-editor__standard-heading {
|
|
2104
|
+
margin-top: 44px;
|
|
2105
|
+
}
|
|
2106
|
+
.prose-content > * + h3.t-editor__standard-heading,
|
|
2107
|
+
.prose-content > * + h4.t-editor__standard-heading {
|
|
2108
|
+
margin-top: 28px;
|
|
2109
|
+
}
|
|
2110
|
+
.prose-content > * + h5.t-editor__standard-heading,
|
|
2111
|
+
.prose-content > * + h6.t-editor__standard-heading {
|
|
2112
|
+
margin-top: 24px;
|
|
2113
|
+
}
|
|
2097
2114
|
|
|
2098
2115
|
/* ../../packages/css/src/guides/text-extensions/list.css */
|
|
2099
2116
|
.t-editor__list {
|
|
@@ -2397,7 +2414,7 @@ ul.t-editor__list > * > li::before {
|
|
|
2397
2414
|
.custom-tabs-container .custom-container-content > :nth-child(2) > :nth-child(2) {
|
|
2398
2415
|
margin-top: 0;
|
|
2399
2416
|
}
|
|
2400
|
-
.custom-tabs-container .custom-tabs-content > div
|
|
2417
|
+
.custom-tabs-container .custom-tabs-content > div > :first-child {
|
|
2401
2418
|
margin-top: 0;
|
|
2402
2419
|
}
|
|
2403
2420
|
.custom-tabs-container input:nth-of-type(1):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(1),
|
|
@@ -2994,9 +3011,6 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
2994
3011
|
line-height: var(--line-height);
|
|
2995
3012
|
}
|
|
2996
3013
|
.t-editor__card .card-content__text {
|
|
2997
|
-
display: flex;
|
|
2998
|
-
flex-direction: column;
|
|
2999
|
-
gap: var(--scalar-block-spacing);
|
|
3000
3014
|
color: var(--scalar-color-2);
|
|
3001
3015
|
}
|
|
3002
3016
|
.t-editor__card .card-content__text:empty,
|
|
@@ -3029,6 +3043,7 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
3029
3043
|
.t-editor__card .card-content > .t-editor__icon {
|
|
3030
3044
|
width: auto;
|
|
3031
3045
|
max-width: 100%;
|
|
3046
|
+
align-self: start;
|
|
3032
3047
|
}
|
|
3033
3048
|
.t-editor__card .card-content__title > .t-editor__icon {
|
|
3034
3049
|
height: var(--scalar-card-icon-size);
|
|
@@ -3765,7 +3780,7 @@ blockquote.t-editor__quote > * {
|
|
|
3765
3780
|
<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
3781
|
</svg></button>
|
|
3767
3782
|
</h2>
|
|
3768
|
-
<div id="
|
|
3783
|
+
<div id="5cbB0UkzXwlTfg1IMGuYp" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3769
3784
|
<pre style="
|
|
3770
3785
|
--line-digits: 2;
|
|
3771
3786
|
--line-number-start: -1;
|
|
@@ -3788,7 +3803,7 @@ blockquote.t-editor__quote > * {
|
|
|
3788
3803
|
</svg></button>
|
|
3789
3804
|
</h2>
|
|
3790
3805
|
<p class="t-editor__paragraph">If you really want to become friends you should install the CLI:</p>
|
|
3791
|
-
<div id="
|
|
3806
|
+
<div id="JK6pwEUx6eqfbAEce3n8O" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3792
3807
|
<pre style="
|
|
3793
3808
|
--line-digits: 2;
|
|
3794
3809
|
--line-number-start: -1;
|
|
@@ -3812,7 +3827,7 @@ blockquote.t-editor__quote > * {
|
|
|
3812
3827
|
</svg></button>
|
|
3813
3828
|
</h3>
|
|
3814
3829
|
<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="
|
|
3830
|
+
<div id="2XsEDsjKKQFsYQQxrNUi0" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3816
3831
|
<pre style="
|
|
3817
3832
|
--line-digits: 2;
|
|
3818
3833
|
--line-number-start: -1;
|
|
@@ -3826,7 +3841,7 @@ blockquote.t-editor__quote > * {
|
|
|
3826
3841
|
</svg></button>
|
|
3827
3842
|
</div>
|
|
3828
3843
|
<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="
|
|
3844
|
+
<div id="UpCyngLt9KIRm32qFdQY2" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3830
3845
|
<pre style="
|
|
3831
3846
|
--line-digits: 2;
|
|
3832
3847
|
--line-number-start: -1;
|
|
@@ -3852,7 +3867,7 @@ blockquote.t-editor__quote > * {
|
|
|
3852
3867
|
<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
3868
|
</svg></button>
|
|
3854
3869
|
</h2>
|
|
3855
|
-
<div id="
|
|
3870
|
+
<div id="JlFuqTfsa5KtcKNN8vKgr" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3856
3871
|
<pre style="
|
|
3857
3872
|
--line-digits: 2;
|
|
3858
3873
|
--line-number-start: -1;
|
|
@@ -3892,7 +3907,7 @@ blockquote.t-editor__quote > * {
|
|
|
3892
3907
|
<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
3908
|
</svg></button>
|
|
3894
3909
|
</h3>
|
|
3895
|
-
<div id="
|
|
3910
|
+
<div id="PMEgCJWI9QZUJAdmWoMr8" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3896
3911
|
<pre style="
|
|
3897
3912
|
--line-digits: 2;
|
|
3898
3913
|
--line-number-start: -1;
|
|
@@ -3922,7 +3937,7 @@ blockquote.t-editor__quote > * {
|
|
|
3922
3937
|
<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
3938
|
</svg></button>
|
|
3924
3939
|
</h4>
|
|
3925
|
-
<div id="
|
|
3940
|
+
<div id="zQwTd0LgcIMbwDQ0lhVei" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3926
3941
|
<pre style="
|
|
3927
3942
|
--line-digits: 2;
|
|
3928
3943
|
--line-number-start: -1;
|
|
@@ -3950,7 +3965,7 @@ blockquote.t-editor__quote > * {
|
|
|
3950
3965
|
<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
3966
|
</svg></button>
|
|
3952
3967
|
</h3>
|
|
3953
|
-
<div id="
|
|
3968
|
+
<div id="1eaUgWYHh8rMnRWhBDbGr" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3954
3969
|
<pre style="
|
|
3955
3970
|
--line-digits: 2;
|
|
3956
3971
|
--line-number-start: -1;
|
|
@@ -3977,7 +3992,7 @@ blockquote.t-editor__quote > * {
|
|
|
3977
3992
|
<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
3993
|
</svg></button>
|
|
3979
3994
|
</h3>
|
|
3980
|
-
<div id="
|
|
3995
|
+
<div id="D0JsPtFDxkxf7MSL5SHcz" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3981
3996
|
<pre style="
|
|
3982
3997
|
--line-digits: 2;
|
|
3983
3998
|
--line-number-start: -1;
|
|
@@ -4010,7 +4025,7 @@ blockquote.t-editor__quote > * {
|
|
|
4010
4025
|
<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
4026
|
</svg></button>
|
|
4012
4027
|
</h4>
|
|
4013
|
-
<div id="
|
|
4028
|
+
<div id="AHDzgBpT7Nppcz4uB95Di" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4014
4029
|
<pre style="
|
|
4015
4030
|
--line-digits: 2;
|
|
4016
4031
|
--line-number-start: -1;
|
|
@@ -4040,7 +4055,7 @@ blockquote.t-editor__quote > * {
|
|
|
4040
4055
|
<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
4056
|
</svg></button>
|
|
4042
4057
|
</h4>
|
|
4043
|
-
<div id="
|
|
4058
|
+
<div id="hi3E2EUFzFQJ1AqBcU0k5" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4044
4059
|
<pre style="
|
|
4045
4060
|
--line-digits: 2;
|
|
4046
4061
|
--line-number-start: -1;
|
|
@@ -4067,7 +4082,7 @@ blockquote.t-editor__quote > * {
|
|
|
4067
4082
|
<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
4083
|
</svg></button>
|
|
4069
4084
|
</h4>
|
|
4070
|
-
<div id="
|
|
4085
|
+
<div id="N3EoYlT9hiTuxWzon5Xv1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4071
4086
|
<pre style="
|
|
4072
4087
|
--line-digits: 2;
|
|
4073
4088
|
--line-number-start: -1;
|
|
@@ -4094,7 +4109,7 @@ blockquote.t-editor__quote > * {
|
|
|
4094
4109
|
<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
4110
|
</svg></button>
|
|
4096
4111
|
</h3>
|
|
4097
|
-
<div id="
|
|
4112
|
+
<div id="W5cfdcxIvc5lebKYjVP0x" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4098
4113
|
<pre style="
|
|
4099
4114
|
--line-digits: 2;
|
|
4100
4115
|
--line-number-start: -1;
|
|
@@ -4137,7 +4152,7 @@ blockquote.t-editor__quote > * {
|
|
|
4137
4152
|
<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
4153
|
</svg></button>
|
|
4139
4154
|
</h4>
|
|
4140
|
-
<div id="
|
|
4155
|
+
<div id="MG0fRdbXiRE3fgWdM2oQz" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4141
4156
|
<pre style="
|
|
4142
4157
|
--line-digits: 2;
|
|
4143
4158
|
--line-number-start: -1;
|
|
@@ -4171,7 +4186,7 @@ blockquote.t-editor__quote > * {
|
|
|
4171
4186
|
<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
4187
|
</svg></button>
|
|
4173
4188
|
</h4>
|
|
4174
|
-
<div id="
|
|
4189
|
+
<div id="msJuX7Ytdm9Zmr8tZBM4n" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4175
4190
|
<pre style="
|
|
4176
4191
|
--line-digits: 2;
|
|
4177
4192
|
--line-number-start: -1;
|
|
@@ -4202,7 +4217,7 @@ blockquote.t-editor__quote > * {
|
|
|
4202
4217
|
<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
4218
|
</svg></button>
|
|
4204
4219
|
</h4>
|
|
4205
|
-
<div id="
|
|
4220
|
+
<div id="Sb4NiSlloy2NssAES4qNY" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4206
4221
|
<pre style="
|
|
4207
4222
|
--line-digits: 2;
|
|
4208
4223
|
--line-number-start: -1;
|
|
@@ -4234,7 +4249,7 @@ blockquote.t-editor__quote > * {
|
|
|
4234
4249
|
<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
4250
|
</svg></button>
|
|
4236
4251
|
</h4>
|
|
4237
|
-
<div id="
|
|
4252
|
+
<div id="l7RldU3iXZJtIaTSAGuCy" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4238
4253
|
<pre style="
|
|
4239
4254
|
--line-digits: 2;
|
|
4240
4255
|
--line-number-start: -1;
|
|
@@ -4265,7 +4280,7 @@ blockquote.t-editor__quote > * {
|
|
|
4265
4280
|
<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
4281
|
</svg></button>
|
|
4267
4282
|
</h4>
|
|
4268
|
-
<div id="
|
|
4283
|
+
<div id="gIIpWuRyhK04abOXhz8ko" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4269
4284
|
<pre style="
|
|
4270
4285
|
--line-digits: 2;
|
|
4271
4286
|
--line-number-start: -1;
|
|
@@ -4297,7 +4312,7 @@ blockquote.t-editor__quote > * {
|
|
|
4297
4312
|
<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
4313
|
</svg></button>
|
|
4299
4314
|
</h4>
|
|
4300
|
-
<div id="
|
|
4315
|
+
<div id="1o3n4cuZDUaNFmLTbjpFZ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4301
4316
|
<pre style="
|
|
4302
4317
|
--line-digits: 2;
|
|
4303
4318
|
--line-number-start: -1;
|
|
@@ -4328,7 +4343,7 @@ blockquote.t-editor__quote > * {
|
|
|
4328
4343
|
<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
4344
|
</svg></button>
|
|
4330
4345
|
</h4>
|
|
4331
|
-
<div id="
|
|
4346
|
+
<div id="tAHgc3asN2k5AfRj9YK3N" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4332
4347
|
<pre style="
|
|
4333
4348
|
--line-digits: 2;
|
|
4334
4349
|
--line-number-start: -1;
|
|
@@ -4361,7 +4376,7 @@ blockquote.t-editor__quote > * {
|
|
|
4361
4376
|
<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
4377
|
</svg></button>
|
|
4363
4378
|
</h4>
|
|
4364
|
-
<div id="
|
|
4379
|
+
<div id="suZPsgigJSVKdMdQuSuMB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4365
4380
|
<pre style="
|
|
4366
4381
|
--line-digits: 2;
|
|
4367
4382
|
--line-number-start: -1;
|
|
@@ -4394,7 +4409,7 @@ blockquote.t-editor__quote > * {
|
|
|
4394
4409
|
<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
4410
|
</svg></button>
|
|
4396
4411
|
</h4>
|
|
4397
|
-
<div id="
|
|
4412
|
+
<div id="lJaF7czXNpBpILCUDgy7p" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4398
4413
|
<pre style="
|
|
4399
4414
|
--line-digits: 2;
|
|
4400
4415
|
--line-number-start: -1;
|
|
@@ -4425,7 +4440,7 @@ blockquote.t-editor__quote > * {
|
|
|
4425
4440
|
<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
4441
|
</svg></button>
|
|
4427
4442
|
</h4>
|
|
4428
|
-
<div id="
|
|
4443
|
+
<div id="QQ3WK7ylw7m2qgx1wo3KQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4429
4444
|
<pre style="
|
|
4430
4445
|
--line-digits: 2;
|
|
4431
4446
|
--line-number-start: -1;
|
|
@@ -4455,7 +4470,7 @@ blockquote.t-editor__quote > * {
|
|
|
4455
4470
|
<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
4471
|
</svg></button>
|
|
4457
4472
|
</h4>
|
|
4458
|
-
<div id="
|
|
4473
|
+
<div id="vFMTdVTYS1CZBBSPJeM9T" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4459
4474
|
<pre style="
|
|
4460
4475
|
--line-digits: 2;
|
|
4461
4476
|
--line-number-start: -1;
|
|
@@ -4484,7 +4499,7 @@ blockquote.t-editor__quote > * {
|
|
|
4484
4499
|
<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
4500
|
</svg></button>
|
|
4486
4501
|
</h4>
|
|
4487
|
-
<div id="
|
|
4502
|
+
<div id="FW7ik0hLAHEFEWd9hPQrT" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4488
4503
|
<pre style="
|
|
4489
4504
|
--line-digits: 2;
|
|
4490
4505
|
--line-number-start: -1;
|
|
@@ -4515,7 +4530,7 @@ blockquote.t-editor__quote > * {
|
|
|
4515
4530
|
<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
4531
|
</svg></button>
|
|
4517
4532
|
</h4>
|
|
4518
|
-
<div id="
|
|
4533
|
+
<div id="18R01CjNxaJkq7ZiKtuY4" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4519
4534
|
<pre style="
|
|
4520
4535
|
--line-digits: 2;
|
|
4521
4536
|
--line-number-start: -1;
|
|
@@ -4546,7 +4561,7 @@ blockquote.t-editor__quote > * {
|
|
|
4546
4561
|
<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
4562
|
</svg></button>
|
|
4548
4563
|
</h3>
|
|
4549
|
-
<div id="
|
|
4564
|
+
<div id="yNu3NZsuWkbAgl8AkSWZq" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4550
4565
|
<pre style="
|
|
4551
4566
|
--line-digits: 2;
|
|
4552
4567
|
--line-number-start: -1;
|
|
@@ -4582,7 +4597,7 @@ blockquote.t-editor__quote > * {
|
|
|
4582
4597
|
<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
4598
|
</svg></button>
|
|
4584
4599
|
</h4>
|
|
4585
|
-
<div id="
|
|
4600
|
+
<div id="WtYScpAkI2cUrjvH7q3K8" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4586
4601
|
<pre style="
|
|
4587
4602
|
--line-digits: 2;
|
|
4588
4603
|
--line-number-start: -1;
|
|
@@ -4611,7 +4626,7 @@ blockquote.t-editor__quote > * {
|
|
|
4611
4626
|
<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
4627
|
</svg></button>
|
|
4613
4628
|
</h4>
|
|
4614
|
-
<div id="
|
|
4629
|
+
<div id="yBZPouV9BM5RFUuZ2gzEp" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4615
4630
|
<pre style="
|
|
4616
4631
|
--line-digits: 2;
|
|
4617
4632
|
--line-number-start: -1;
|
|
@@ -4641,7 +4656,7 @@ blockquote.t-editor__quote > * {
|
|
|
4641
4656
|
<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
4657
|
</svg></button>
|
|
4643
4658
|
</h4>
|
|
4644
|
-
<div id="
|
|
4659
|
+
<div id="vfsuZbRO7VbQfvUcGpHPy" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4645
4660
|
<pre style="
|
|
4646
4661
|
--line-digits: 2;
|
|
4647
4662
|
--line-number-start: -1;
|
|
@@ -4670,7 +4685,7 @@ blockquote.t-editor__quote > * {
|
|
|
4670
4685
|
<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
4686
|
</svg></button>
|
|
4672
4687
|
</h4>
|
|
4673
|
-
<div id="
|
|
4688
|
+
<div id="iB41E82HZRxJ6J3hnf3lB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4674
4689
|
<pre style="
|
|
4675
4690
|
--line-digits: 2;
|
|
4676
4691
|
--line-number-start: -1;
|
|
@@ -4705,7 +4720,7 @@ blockquote.t-editor__quote > * {
|
|
|
4705
4720
|
<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
4721
|
</svg></button>
|
|
4707
4722
|
</h4>
|
|
4708
|
-
<div id="
|
|
4723
|
+
<div id="MYQdU0D0ch1OkSz9jMdQu" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4709
4724
|
<pre style="
|
|
4710
4725
|
--line-digits: 2;
|
|
4711
4726
|
--line-number-start: -1;
|
|
@@ -4736,7 +4751,7 @@ blockquote.t-editor__quote > * {
|
|
|
4736
4751
|
<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
4752
|
</svg></button>
|
|
4738
4753
|
</h4>
|
|
4739
|
-
<div id="
|
|
4754
|
+
<div id="EgMQZN7tskpDjYDsj7CYA" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4740
4755
|
<pre style="
|
|
4741
4756
|
--line-digits: 2;
|
|
4742
4757
|
--line-number-start: -1;
|
|
@@ -4766,7 +4781,7 @@ blockquote.t-editor__quote > * {
|
|
|
4766
4781
|
<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
4782
|
</svg></button>
|
|
4768
4783
|
</h3>
|
|
4769
|
-
<div id="
|
|
4784
|
+
<div id="lVUGmfTmOM4Sn3s0vKJ0I" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4770
4785
|
<pre style="
|
|
4771
4786
|
--line-digits: 2;
|
|
4772
4787
|
--line-number-start: -1;
|
|
@@ -4801,7 +4816,7 @@ blockquote.t-editor__quote > * {
|
|
|
4801
4816
|
<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
4817
|
</svg></button>
|
|
4803
4818
|
</h4>
|
|
4804
|
-
<div id="
|
|
4819
|
+
<div id="yMSqYmGhFqMXk7rVszFKu" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4805
4820
|
<pre style="
|
|
4806
4821
|
--line-digits: 2;
|
|
4807
4822
|
--line-number-start: -1;
|
|
@@ -4841,7 +4856,7 @@ blockquote.t-editor__quote > * {
|
|
|
4841
4856
|
<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
4857
|
</svg></button>
|
|
4843
4858
|
</h4>
|
|
4844
|
-
<div id="
|
|
4859
|
+
<div id="UJzOorlBEqZ12JhZODMKB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4845
4860
|
<pre style="
|
|
4846
4861
|
--line-digits: 2;
|
|
4847
4862
|
--line-number-start: -1;
|
|
@@ -4874,7 +4889,7 @@ blockquote.t-editor__quote > * {
|
|
|
4874
4889
|
<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
4890
|
</svg></button>
|
|
4876
4891
|
</h4>
|
|
4877
|
-
<div id="
|
|
4892
|
+
<div id="303RQe1uQ1L7EBTmGXUCx" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4878
4893
|
<pre style="
|
|
4879
4894
|
--line-digits: 2;
|
|
4880
4895
|
--line-number-start: -1;
|
|
@@ -4905,7 +4920,7 @@ blockquote.t-editor__quote > * {
|
|
|
4905
4920
|
<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
4921
|
</svg></button>
|
|
4907
4922
|
</h4>
|
|
4908
|
-
<div id="
|
|
4923
|
+
<div id="YdcK3KecjNnamVVZRjcRA" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4909
4924
|
<pre style="
|
|
4910
4925
|
--line-digits: 2;
|
|
4911
4926
|
--line-number-start: -1;
|
|
@@ -4933,7 +4948,7 @@ blockquote.t-editor__quote > * {
|
|
|
4933
4948
|
<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
4949
|
</svg></button>
|
|
4935
4950
|
</h4>
|
|
4936
|
-
<div id="
|
|
4951
|
+
<div id="aVYAe9aW1kkhhgBfy6n80" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4937
4952
|
<pre style="
|
|
4938
4953
|
--line-digits: 2;
|
|
4939
4954
|
--line-number-start: -1;
|
|
@@ -4967,7 +4982,7 @@ blockquote.t-editor__quote > * {
|
|
|
4967
4982
|
<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
4983
|
</svg></button>
|
|
4969
4984
|
</h3>
|
|
4970
|
-
<div id="
|
|
4985
|
+
<div id="JliitkajKl80DS9UeRUNI" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4971
4986
|
<pre style="
|
|
4972
4987
|
--line-digits: 2;
|
|
4973
4988
|
--line-number-start: -1;
|
|
@@ -4999,7 +5014,7 @@ blockquote.t-editor__quote > * {
|
|
|
4999
5014
|
<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
5015
|
</svg></button>
|
|
5001
5016
|
</h4>
|
|
5002
|
-
<div id="
|
|
5017
|
+
<div id="HKUYlUmZ13NqeNkXt3KDM" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5003
5018
|
<pre style="
|
|
5004
5019
|
--line-digits: 2;
|
|
5005
5020
|
--line-number-start: -1;
|
|
@@ -5026,7 +5041,7 @@ blockquote.t-editor__quote > * {
|
|
|
5026
5041
|
<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
5042
|
</svg></button>
|
|
5028
5043
|
</h4>
|
|
5029
|
-
<div id="
|
|
5044
|
+
<div id="JKYkIx1rcDHxS7E0qUTnR" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5030
5045
|
<pre style="
|
|
5031
5046
|
--line-digits: 2;
|
|
5032
5047
|
--line-number-start: -1;
|
|
@@ -5054,7 +5069,7 @@ blockquote.t-editor__quote > * {
|
|
|
5054
5069
|
<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
5070
|
</svg></button>
|
|
5056
5071
|
</h3>
|
|
5057
|
-
<div id="
|
|
5072
|
+
<div id="RhCdGFxZEmC4ZCV7fXTB3" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5058
5073
|
<pre style="
|
|
5059
5074
|
--line-digits: 2;
|
|
5060
5075
|
--line-number-start: -1;
|
|
@@ -5089,7 +5104,7 @@ blockquote.t-editor__quote > * {
|
|
|
5089
5104
|
<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
5105
|
</svg></button>
|
|
5091
5106
|
</h4>
|
|
5092
|
-
<div id="
|
|
5107
|
+
<div id="QKh2wZScA9LeErrs282C1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5093
5108
|
<pre style="
|
|
5094
5109
|
--line-digits: 2;
|
|
5095
5110
|
--line-number-start: -1;
|
|
@@ -5117,7 +5132,7 @@ blockquote.t-editor__quote > * {
|
|
|
5117
5132
|
<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
5133
|
</svg></button>
|
|
5119
5134
|
</h4>
|
|
5120
|
-
<div id="
|
|
5135
|
+
<div id="BMKvbbJo7SaUtf94JHaGp" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5121
5136
|
<pre style="
|
|
5122
5137
|
--line-digits: 2;
|
|
5123
5138
|
--line-number-start: -1;
|
|
@@ -5128,7 +5143,7 @@ blockquote.t-editor__quote > * {
|
|
|
5128
5143
|
<span class="t-code__line" data-line-number="4">Options:</span>
|
|
5129
5144
|
<span class="t-code__line" data-line-number="5"> -a, --api <api> Registry API slug</span>
|
|
5130
5145
|
<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>
|
|
5146
|
+
<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
5147
|
<span class="t-code__line" data-line-number="8"> -h, --help display help for command</span>
|
|
5133
5148
|
</code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
|
|
5134
5149
|
<svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
|
|
@@ -5147,7 +5162,7 @@ blockquote.t-editor__quote > * {
|
|
|
5147
5162
|
<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
5163
|
</svg></button>
|
|
5149
5164
|
</h4>
|
|
5150
|
-
<div id="
|
|
5165
|
+
<div id="s2l8pqDknmAEbPnkP0wAb" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5151
5166
|
<pre style="
|
|
5152
5167
|
--line-digits: 2;
|
|
5153
5168
|
--line-number-start: -1;
|
|
@@ -5178,7 +5193,7 @@ blockquote.t-editor__quote > * {
|
|
|
5178
5193
|
<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
5194
|
</svg></button>
|
|
5180
5195
|
</h4>
|
|
5181
|
-
<div id="
|
|
5196
|
+
<div id="NqwnVojROKC0zNqbd88U6" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5182
5197
|
<pre style="
|
|
5183
5198
|
--line-digits: 2;
|
|
5184
5199
|
--line-number-start: -1;
|
|
@@ -5207,7 +5222,7 @@ blockquote.t-editor__quote > * {
|
|
|
5207
5222
|
<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
5223
|
</svg></button>
|
|
5209
5224
|
</h4>
|
|
5210
|
-
<div id="
|
|
5225
|
+
<div id="raT89lFPKYqAlwu6g1lRA" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5211
5226
|
<pre style="
|
|
5212
5227
|
--line-digits: 2;
|
|
5213
5228
|
--line-number-start: -1;
|
|
@@ -5237,7 +5252,7 @@ blockquote.t-editor__quote > * {
|
|
|
5237
5252
|
<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
5253
|
</svg></button>
|
|
5239
5254
|
</h3>
|
|
5240
|
-
<div id="
|
|
5255
|
+
<div id="TdakHIO0oOSjA1g3FThXw" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5241
5256
|
<pre style="
|
|
5242
5257
|
--line-digits: 2;
|
|
5243
5258
|
--line-number-start: -1;
|
|
@@ -5271,7 +5286,7 @@ blockquote.t-editor__quote > * {
|
|
|
5271
5286
|
<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
5287
|
</svg></button>
|
|
5273
5288
|
</h4>
|
|
5274
|
-
<div id="
|
|
5289
|
+
<div id="qGeML9PXVBK8s7apMiHAf" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5275
5290
|
<pre style="
|
|
5276
5291
|
--line-digits: 2;
|
|
5277
5292
|
--line-number-start: -1;
|
|
@@ -5300,7 +5315,7 @@ blockquote.t-editor__quote > * {
|
|
|
5300
5315
|
<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
5316
|
</svg></button>
|
|
5302
5317
|
</h4>
|
|
5303
|
-
<div id="
|
|
5318
|
+
<div id="NCMdgDMUPQscjqESByfCO" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5304
5319
|
<pre style="
|
|
5305
5320
|
--line-digits: 2;
|
|
5306
5321
|
--line-number-start: -1;
|
|
@@ -5332,7 +5347,7 @@ blockquote.t-editor__quote > * {
|
|
|
5332
5347
|
<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
5348
|
</svg></button>
|
|
5334
5349
|
</h4>
|
|
5335
|
-
<div id="
|
|
5350
|
+
<div id="6EzlizXpwQixHfIAExrnH" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5336
5351
|
<pre style="
|
|
5337
5352
|
--line-digits: 2;
|
|
5338
5353
|
--line-number-start: -1;
|
|
@@ -5360,7 +5375,7 @@ blockquote.t-editor__quote > * {
|
|
|
5360
5375
|
<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
5376
|
</svg></button>
|
|
5362
5377
|
</h4>
|
|
5363
|
-
<div id="
|
|
5378
|
+
<div id="XG2okHGe2d8WKbuYb8w9e" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5364
5379
|
<pre style="
|
|
5365
5380
|
--line-digits: 2;
|
|
5366
5381
|
--line-number-start: -1;
|
|
@@ -5400,7 +5415,7 @@ blockquote.t-editor__quote > * {
|
|
|
5400
5415
|
</svg></button>
|
|
5401
5416
|
</h2>
|
|
5402
5417
|
<p class="t-editor__paragraph">To validate your OpenAPI file in GitHub Actions, add this workflow:</p>
|
|
5403
|
-
<div id="
|
|
5418
|
+
<div id="SyecirvgUjejuXdlZLTfr" class="t-editor__code-container" data-lang="yml" style="position: relative;">
|
|
5404
5419
|
<pre style="
|
|
5405
5420
|
--line-digits: 2;
|
|
5406
5421
|
--line-number-start: -1;
|
|
@@ -5447,7 +5462,7 @@ blockquote.t-editor__quote > * {
|
|
|
5447
5462
|
</svg></button>
|
|
5448
5463
|
</h2>
|
|
5449
5464
|
<p class="t-editor__paragraph">Set up the development environment:</p>
|
|
5450
|
-
<div id="
|
|
5465
|
+
<div id="jGJHxQr3OZAdxWID3ZVjR" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5451
5466
|
<pre style="
|
|
5452
5467
|
--line-digits: 2;
|
|
5453
5468
|
--line-number-start: -1;
|
|
@@ -5462,7 +5477,7 @@ blockquote.t-editor__quote > * {
|
|
|
5462
5477
|
</svg></button>
|
|
5463
5478
|
</div>
|
|
5464
5479
|
<p class="t-editor__paragraph">To symlink the package and use it globally on your machine:</p>
|
|
5465
|
-
<div id="
|
|
5480
|
+
<div id="fa2fXH4Wm38FMM9G2i3VR" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5466
5481
|
<pre style="
|
|
5467
5482
|
--line-digits: 2;
|
|
5468
5483
|
--line-number-start: -1;
|