@scalar/cli 1.9.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -6
- package/docs.html +145 -100
- package/index.js +401 -269
- package/package.json +6 -6
package/docs.html
CHANGED
|
@@ -1520,6 +1520,20 @@ body {
|
|
|
1520
1520
|
}
|
|
1521
1521
|
}
|
|
1522
1522
|
|
|
1523
|
+
/* ../../packages/css/src/guides/prose.css */
|
|
1524
|
+
.t-prose > * + * {
|
|
1525
|
+
margin-top: var(--scalar-block-spacing);
|
|
1526
|
+
}
|
|
1527
|
+
.t-prose > .t-editor__line-break,
|
|
1528
|
+
.t-prose > .t-editor__line-break + * {
|
|
1529
|
+
margin-top: calc(var(--scalar-heading-spacing) * 0.75);
|
|
1530
|
+
}
|
|
1531
|
+
* > .t-prose > .t-editor__heading:first-child,
|
|
1532
|
+
.t-prose > .t-editor__heading:first-child {
|
|
1533
|
+
margin-top: 0;
|
|
1534
|
+
scroll-margin-top: 100vh;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1523
1537
|
/* ../../packages/css/src/guides/editor.css */
|
|
1524
1538
|
.t-editor {
|
|
1525
1539
|
padding: 0 50px 88px;
|
|
@@ -1536,14 +1550,6 @@ body {
|
|
|
1536
1550
|
padding: 0 0 44px;
|
|
1537
1551
|
max-width: var(--scalar-container-width);
|
|
1538
1552
|
}
|
|
1539
|
-
.t-editor :where(.prose-content) > * + * {
|
|
1540
|
-
margin-top: var(--scalar-block-spacing);
|
|
1541
|
-
}
|
|
1542
|
-
.t-editor * > .prose-content > .t-editor__heading:first-child,
|
|
1543
|
-
.t-editor .prose-content > .t-editor__heading:first-child {
|
|
1544
|
-
margin-top: 0;
|
|
1545
|
-
scroll-margin-top: 100vh;
|
|
1546
|
-
}
|
|
1547
1553
|
@media (max-width: 1000px) {
|
|
1548
1554
|
.t-editor .page-node {
|
|
1549
1555
|
padding: 0 0 48px;
|
|
@@ -2032,12 +2038,6 @@ h1.t-editor__heading {
|
|
|
2032
2038
|
margin-top: 60px;
|
|
2033
2039
|
overflow-wrap: anywhere;
|
|
2034
2040
|
}
|
|
2035
|
-
h1.t-editor__heading:first-of-type {
|
|
2036
|
-
margin-top: 88px;
|
|
2037
|
-
}
|
|
2038
|
-
h1.t-editor__heading.t-editor__standard-heading {
|
|
2039
|
-
margin-top: 60px;
|
|
2040
|
-
}
|
|
2041
2041
|
h2.t-editor__heading {
|
|
2042
2042
|
--font-size: var(--scalar-heading-2);
|
|
2043
2043
|
font-size: var(--font-size, var(--scalar-heading-2));
|
|
@@ -2065,6 +2065,9 @@ h4.t-editor__heading {
|
|
|
2065
2065
|
.t-editor__table .t-editor__heading:first-of-type {
|
|
2066
2066
|
margin-top: 0;
|
|
2067
2067
|
}
|
|
2068
|
+
h1.t-editor__heading:first-of-type {
|
|
2069
|
+
margin-top: 10px;
|
|
2070
|
+
}
|
|
2068
2071
|
.t-editor__page-title {
|
|
2069
2072
|
--font-size: var(--scalar-heading-1);
|
|
2070
2073
|
--font-color: var(--scalar-color-1);
|
|
@@ -2099,15 +2102,15 @@ h1.t-editor__heading {
|
|
|
2099
2102
|
.t-editor__heading.t-editor__standard-heading {
|
|
2100
2103
|
margin-top: 0;
|
|
2101
2104
|
}
|
|
2102
|
-
.prose
|
|
2105
|
+
.t-prose > * + h2.t-editor__standard-heading {
|
|
2103
2106
|
margin-top: 44px;
|
|
2104
2107
|
}
|
|
2105
|
-
.prose
|
|
2106
|
-
.prose
|
|
2108
|
+
.t-prose > * + h3.t-editor__standard-heading,
|
|
2109
|
+
.t-prose > * + h4.t-editor__standard-heading {
|
|
2107
2110
|
margin-top: 28px;
|
|
2108
2111
|
}
|
|
2109
|
-
.prose
|
|
2110
|
-
.prose
|
|
2112
|
+
.t-prose > * + h5.t-editor__standard-heading,
|
|
2113
|
+
.t-prose > * + h6.t-editor__standard-heading {
|
|
2111
2114
|
margin-top: 24px;
|
|
2112
2115
|
}
|
|
2113
2116
|
|
|
@@ -2121,8 +2124,8 @@ h1.t-editor__heading {
|
|
|
2121
2124
|
.t-editor__list li {
|
|
2122
2125
|
position: relative;
|
|
2123
2126
|
}
|
|
2124
|
-
.t-
|
|
2125
|
-
.t-
|
|
2127
|
+
.t-prose ul,
|
|
2128
|
+
.t-prose ol {
|
|
2126
2129
|
padding-left: 1.6em;
|
|
2127
2130
|
}
|
|
2128
2131
|
ol.t-editor__list > li::marker,
|
|
@@ -2409,13 +2412,6 @@ ul.t-editor__list > * > li::before {
|
|
|
2409
2412
|
padding-top: 16px;
|
|
2410
2413
|
padding-bottom: 16px;
|
|
2411
2414
|
}
|
|
2412
|
-
.custom-tabs-container .custom-container-content > :nth-child(1) > :nth-child(2),
|
|
2413
|
-
.custom-tabs-container .custom-container-content > :nth-child(2) > :nth-child(2) {
|
|
2414
|
-
margin-top: 0;
|
|
2415
|
-
}
|
|
2416
|
-
.custom-tabs-container .custom-tabs-content > div > :first-child {
|
|
2417
|
-
margin-top: 0;
|
|
2418
|
-
}
|
|
2419
2415
|
.custom-tabs-container input:nth-of-type(1):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(1),
|
|
2420
2416
|
.custom-tabs-container input:nth-of-type(2):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(2),
|
|
2421
2417
|
.custom-tabs-container input:nth-of-type(3):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(3),
|
|
@@ -2554,17 +2550,18 @@ details.t-editor__step .t-editor__step-summary:hover .t-editor__step-marker-icon
|
|
|
2554
2550
|
|
|
2555
2551
|
/* ../../packages/css/src/guides/text-extensions/checklist.css */
|
|
2556
2552
|
ul.t-editor__checklist {
|
|
2557
|
-
|
|
2553
|
+
font-size: var(--scalar-paragraph);
|
|
2558
2554
|
}
|
|
2559
2555
|
ul.t-editor__checklist > li {
|
|
2560
|
-
|
|
2561
|
-
display: flex;
|
|
2562
|
-
gap: 10.5px;
|
|
2556
|
+
position: relative;
|
|
2563
2557
|
list-style: none;
|
|
2564
2558
|
line-height: 1.625;
|
|
2559
|
+
padding-left: 7px;
|
|
2565
2560
|
}
|
|
2566
|
-
|
|
2567
|
-
|
|
2561
|
+
.t-editor__checklist label {
|
|
2562
|
+
position: absolute;
|
|
2563
|
+
top: 0.225em;
|
|
2564
|
+
left: -1.4em;
|
|
2568
2565
|
}
|
|
2569
2566
|
.t-editor__checklist .t-editor__paragraph {
|
|
2570
2567
|
margin-top: 0;
|
|
@@ -2600,8 +2597,8 @@ ul.t-editor__checklist:not(.t-editor__checklist ul) {
|
|
|
2600
2597
|
.t-editor__checklist input[type=checkbox]:checked::before {
|
|
2601
2598
|
opacity: 1;
|
|
2602
2599
|
}
|
|
2603
|
-
.t-
|
|
2604
|
-
.t-
|
|
2600
|
+
.t-prose ul input[type=checkbox],
|
|
2601
|
+
.t-prose ol input[type=checkbox] {
|
|
2605
2602
|
margin: 0;
|
|
2606
2603
|
vertical-align: middle;
|
|
2607
2604
|
}
|
|
@@ -2709,6 +2706,9 @@ ul.contains-task-list > li {
|
|
|
2709
2706
|
.t-editor__code-group > .t-editor__code-container > :first-child {
|
|
2710
2707
|
margin-top: 0;
|
|
2711
2708
|
}
|
|
2709
|
+
.t-editor__code-group > [data-node-view-content] .t-editor__code-container > :first-child {
|
|
2710
|
+
margin-top: 0;
|
|
2711
|
+
}
|
|
2712
2712
|
.t-editor__code-group > input.code-group-input:nth-of-type(1):checked ~ .code-group-nav .code-group-label:nth-of-type(1),
|
|
2713
2713
|
.t-editor__code-group > input.code-group-input:nth-of-type(2):checked ~ .code-group-nav .code-group-label:nth-of-type(2),
|
|
2714
2714
|
.t-editor__code-group > input.code-group-input:nth-of-type(3):checked ~ .code-group-nav .code-group-label:nth-of-type(3),
|
|
@@ -2808,6 +2808,7 @@ ul.contains-task-list > li {
|
|
|
2808
2808
|
.t-code.code__fullheight {
|
|
2809
2809
|
max-height: none;
|
|
2810
2810
|
}
|
|
2811
|
+
.t-editor__code [data-node-view-content],
|
|
2811
2812
|
.t-editor__code [data-node-view-content] span {
|
|
2812
2813
|
line-height: 1.5;
|
|
2813
2814
|
}
|
|
@@ -2870,6 +2871,7 @@ pre.t-code--numbered {
|
|
|
2870
2871
|
color: var(--font-color, var(--scalar-color-2));
|
|
2871
2872
|
font-size: var(--font-size, var(--scalar-mini));
|
|
2872
2873
|
font-weight: var(--font-weight, var(--scalar-regular));
|
|
2874
|
+
line-height: 1.15;
|
|
2873
2875
|
text-align: center;
|
|
2874
2876
|
padding: 4px 0;
|
|
2875
2877
|
font-style: normal;
|
|
@@ -2952,6 +2954,7 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
2952
2954
|
text-align: center;
|
|
2953
2955
|
font-size: var(--scalar-mini);
|
|
2954
2956
|
font-style: normal;
|
|
2957
|
+
line-height: 1.15;
|
|
2955
2958
|
margin-top: 8px;
|
|
2956
2959
|
}
|
|
2957
2960
|
|
|
@@ -3005,9 +3008,10 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
3005
3008
|
.t-editor__card .card-content {
|
|
3006
3009
|
display: flex;
|
|
3007
3010
|
flex-direction: column;
|
|
3008
|
-
align-items: start;
|
|
3009
3011
|
gap: var(--scalar-card-inter-element-gap);
|
|
3010
3012
|
line-height: var(--line-height);
|
|
3013
|
+
flex: 1;
|
|
3014
|
+
min-width: 0;
|
|
3011
3015
|
}
|
|
3012
3016
|
.t-editor__card .card-content__text {
|
|
3013
3017
|
color: var(--scalar-color-2);
|
|
@@ -3022,10 +3026,14 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
3022
3026
|
gap: var(--scalar-card-inter-element-gap);
|
|
3023
3027
|
color: var(--scalar-color-1);
|
|
3024
3028
|
font-weight: var(--scalar-bold);
|
|
3029
|
+
font-size: var(--scalar-paragraph);
|
|
3025
3030
|
}
|
|
3026
3031
|
.t-editor__card .t-editor__paragraph {
|
|
3027
3032
|
--font-color: var(--scalar-color-2);
|
|
3028
3033
|
}
|
|
3034
|
+
.t-editor__card .t-editor__list .t-editor__paragraph {
|
|
3035
|
+
--font-color: var(--scalar-color-1);
|
|
3036
|
+
}
|
|
3029
3037
|
.t-editor__card > .t-editor__icon,
|
|
3030
3038
|
.t-editor__card .card-content > .t-editor__icon {
|
|
3031
3039
|
display: flex;
|
|
@@ -3171,6 +3179,7 @@ figure.t-editor__image.custom-image-size-full img {
|
|
|
3171
3179
|
}
|
|
3172
3180
|
.t-editor__callout .t-editor__paragraph {
|
|
3173
3181
|
font-size: var(--callout-font-size);
|
|
3182
|
+
line-height: var(--callout-line-height);
|
|
3174
3183
|
}
|
|
3175
3184
|
.t-editor__callout .callout-content {
|
|
3176
3185
|
align-items: flex-start;
|
|
@@ -3383,12 +3392,13 @@ blockquote.t-editor__quote > * {
|
|
|
3383
3392
|
.t-editor__table [align=right] {
|
|
3384
3393
|
text-align: right;
|
|
3385
3394
|
}
|
|
3386
|
-
.t-editor__table tr:nth-child(2n) {
|
|
3395
|
+
.t-editor__table tr:nth-child(2n of :has(td)) {
|
|
3387
3396
|
background-color: color-mix(in srgb, var(--scalar-background-2), transparent);
|
|
3388
3397
|
}
|
|
3389
3398
|
.t-editor__table .t-editor__paragraph {
|
|
3390
3399
|
font-weight: inherit;
|
|
3391
3400
|
font-size: inherit;
|
|
3401
|
+
line-height: inherit;
|
|
3392
3402
|
margin-top: 0;
|
|
3393
3403
|
overflow-wrap: break-word;
|
|
3394
3404
|
}
|
|
@@ -3780,7 +3790,7 @@ blockquote.t-editor__quote > * {
|
|
|
3780
3790
|
<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>
|
|
3781
3791
|
</svg></button>
|
|
3782
3792
|
</h2>
|
|
3783
|
-
<div id="
|
|
3793
|
+
<div id="XiR9r7Ce04RQc0lU1ZZPa" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3784
3794
|
<pre style="
|
|
3785
3795
|
--line-digits: 2;
|
|
3786
3796
|
--line-number-start: -1;
|
|
@@ -3803,7 +3813,7 @@ blockquote.t-editor__quote > * {
|
|
|
3803
3813
|
</svg></button>
|
|
3804
3814
|
</h2>
|
|
3805
3815
|
<p class="t-editor__paragraph">If you really want to become friends you should install the CLI:</p>
|
|
3806
|
-
<div id="
|
|
3816
|
+
<div id="7YfXtxllHZ5SbWSgGJVUB" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3807
3817
|
<pre style="
|
|
3808
3818
|
--line-digits: 2;
|
|
3809
3819
|
--line-number-start: -1;
|
|
@@ -3827,7 +3837,7 @@ blockquote.t-editor__quote > * {
|
|
|
3827
3837
|
</svg></button>
|
|
3828
3838
|
</h3>
|
|
3829
3839
|
<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>
|
|
3830
|
-
<div id="
|
|
3840
|
+
<div id="UreXxnLeBcrFl9e0qnwCt" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3831
3841
|
<pre style="
|
|
3832
3842
|
--line-digits: 2;
|
|
3833
3843
|
--line-number-start: -1;
|
|
@@ -3841,7 +3851,7 @@ blockquote.t-editor__quote > * {
|
|
|
3841
3851
|
</svg></button>
|
|
3842
3852
|
</div>
|
|
3843
3853
|
<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>
|
|
3844
|
-
<div id="
|
|
3854
|
+
<div id="kc3wQMjdTmNMWcIktZ7pD" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
3845
3855
|
<pre style="
|
|
3846
3856
|
--line-digits: 2;
|
|
3847
3857
|
--line-number-start: -1;
|
|
@@ -3867,7 +3877,7 @@ blockquote.t-editor__quote > * {
|
|
|
3867
3877
|
<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>
|
|
3868
3878
|
</svg></button>
|
|
3869
3879
|
</h2>
|
|
3870
|
-
<div id="
|
|
3880
|
+
<div id="lm0lJDi14kXymItLZAKDz" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3871
3881
|
<pre style="
|
|
3872
3882
|
--line-digits: 2;
|
|
3873
3883
|
--line-number-start: -1;
|
|
@@ -3907,7 +3917,7 @@ blockquote.t-editor__quote > * {
|
|
|
3907
3917
|
<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>
|
|
3908
3918
|
</svg></button>
|
|
3909
3919
|
</h3>
|
|
3910
|
-
<div id="
|
|
3920
|
+
<div id="tK6kRHuHWBxk0DLuMWdNy" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3911
3921
|
<pre style="
|
|
3912
3922
|
--line-digits: 2;
|
|
3913
3923
|
--line-number-start: -1;
|
|
@@ -3937,7 +3947,7 @@ blockquote.t-editor__quote > * {
|
|
|
3937
3947
|
<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>
|
|
3938
3948
|
</svg></button>
|
|
3939
3949
|
</h4>
|
|
3940
|
-
<div id="
|
|
3950
|
+
<div id="NZB4jehOUmYhXsDUruVkE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3941
3951
|
<pre style="
|
|
3942
3952
|
--line-digits: 2;
|
|
3943
3953
|
--line-number-start: -1;
|
|
@@ -3965,7 +3975,7 @@ blockquote.t-editor__quote > * {
|
|
|
3965
3975
|
<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>
|
|
3966
3976
|
</svg></button>
|
|
3967
3977
|
</h3>
|
|
3968
|
-
<div id="
|
|
3978
|
+
<div id="tzj4bepKc1OFOgSbjuvtQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3969
3979
|
<pre style="
|
|
3970
3980
|
--line-digits: 2;
|
|
3971
3981
|
--line-number-start: -1;
|
|
@@ -3992,7 +4002,7 @@ blockquote.t-editor__quote > * {
|
|
|
3992
4002
|
<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>
|
|
3993
4003
|
</svg></button>
|
|
3994
4004
|
</h3>
|
|
3995
|
-
<div id="
|
|
4005
|
+
<div id="ewUueiCM5QuBVWugoEd9Q" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
3996
4006
|
<pre style="
|
|
3997
4007
|
--line-digits: 2;
|
|
3998
4008
|
--line-number-start: -1;
|
|
@@ -4025,7 +4035,7 @@ blockquote.t-editor__quote > * {
|
|
|
4025
4035
|
<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>
|
|
4026
4036
|
</svg></button>
|
|
4027
4037
|
</h4>
|
|
4028
|
-
<div id="
|
|
4038
|
+
<div id="wlR2AQYzsS21frknCtCJo" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4029
4039
|
<pre style="
|
|
4030
4040
|
--line-digits: 2;
|
|
4031
4041
|
--line-number-start: -1;
|
|
@@ -4055,7 +4065,7 @@ blockquote.t-editor__quote > * {
|
|
|
4055
4065
|
<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>
|
|
4056
4066
|
</svg></button>
|
|
4057
4067
|
</h4>
|
|
4058
|
-
<div id="
|
|
4068
|
+
<div id="ls6HK2lpGnqelOHDloFWF" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4059
4069
|
<pre style="
|
|
4060
4070
|
--line-digits: 2;
|
|
4061
4071
|
--line-number-start: -1;
|
|
@@ -4082,7 +4092,7 @@ blockquote.t-editor__quote > * {
|
|
|
4082
4092
|
<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>
|
|
4083
4093
|
</svg></button>
|
|
4084
4094
|
</h4>
|
|
4085
|
-
<div id="
|
|
4095
|
+
<div id="Bhq4e6ZKxIkDU25IHXFhQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4086
4096
|
<pre style="
|
|
4087
4097
|
--line-digits: 2;
|
|
4088
4098
|
--line-number-start: -1;
|
|
@@ -4109,7 +4119,7 @@ blockquote.t-editor__quote > * {
|
|
|
4109
4119
|
<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>
|
|
4110
4120
|
</svg></button>
|
|
4111
4121
|
</h3>
|
|
4112
|
-
<div id="
|
|
4122
|
+
<div id="Lu7VzREfQGWvrT2G4U7po" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4113
4123
|
<pre style="
|
|
4114
4124
|
--line-digits: 2;
|
|
4115
4125
|
--line-number-start: -1;
|
|
@@ -4152,7 +4162,7 @@ blockquote.t-editor__quote > * {
|
|
|
4152
4162
|
<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>
|
|
4153
4163
|
</svg></button>
|
|
4154
4164
|
</h4>
|
|
4155
|
-
<div id="
|
|
4165
|
+
<div id="cFcmGriyhenzDDBc8hbfE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4156
4166
|
<pre style="
|
|
4157
4167
|
--line-digits: 2;
|
|
4158
4168
|
--line-number-start: -1;
|
|
@@ -4186,7 +4196,7 @@ blockquote.t-editor__quote > * {
|
|
|
4186
4196
|
<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>
|
|
4187
4197
|
</svg></button>
|
|
4188
4198
|
</h4>
|
|
4189
|
-
<div id="
|
|
4199
|
+
<div id="zsGjnMOtBdEuCgnfinyKy" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4190
4200
|
<pre style="
|
|
4191
4201
|
--line-digits: 2;
|
|
4192
4202
|
--line-number-start: -1;
|
|
@@ -4217,7 +4227,7 @@ blockquote.t-editor__quote > * {
|
|
|
4217
4227
|
<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>
|
|
4218
4228
|
</svg></button>
|
|
4219
4229
|
</h4>
|
|
4220
|
-
<div id="
|
|
4230
|
+
<div id="XDHhm6OVMOqvrdaO3aCDV" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4221
4231
|
<pre style="
|
|
4222
4232
|
--line-digits: 2;
|
|
4223
4233
|
--line-number-start: -1;
|
|
@@ -4249,7 +4259,7 @@ blockquote.t-editor__quote > * {
|
|
|
4249
4259
|
<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>
|
|
4250
4260
|
</svg></button>
|
|
4251
4261
|
</h4>
|
|
4252
|
-
<div id="
|
|
4262
|
+
<div id="wlAAehlaNxSE33kREPiuw" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4253
4263
|
<pre style="
|
|
4254
4264
|
--line-digits: 2;
|
|
4255
4265
|
--line-number-start: -1;
|
|
@@ -4280,7 +4290,7 @@ blockquote.t-editor__quote > * {
|
|
|
4280
4290
|
<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>
|
|
4281
4291
|
</svg></button>
|
|
4282
4292
|
</h4>
|
|
4283
|
-
<div id="
|
|
4293
|
+
<div id="GMPv0EvcRCWI68RXsYs9O" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4284
4294
|
<pre style="
|
|
4285
4295
|
--line-digits: 2;
|
|
4286
4296
|
--line-number-start: -1;
|
|
@@ -4312,7 +4322,7 @@ blockquote.t-editor__quote > * {
|
|
|
4312
4322
|
<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>
|
|
4313
4323
|
</svg></button>
|
|
4314
4324
|
</h4>
|
|
4315
|
-
<div id="
|
|
4325
|
+
<div id="paGxncnAulIDELHZqKCkb" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4316
4326
|
<pre style="
|
|
4317
4327
|
--line-digits: 2;
|
|
4318
4328
|
--line-number-start: -1;
|
|
@@ -4343,7 +4353,7 @@ blockquote.t-editor__quote > * {
|
|
|
4343
4353
|
<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>
|
|
4344
4354
|
</svg></button>
|
|
4345
4355
|
</h4>
|
|
4346
|
-
<div id="
|
|
4356
|
+
<div id="tfYA3LFW4iCbgKnomNEcW" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4347
4357
|
<pre style="
|
|
4348
4358
|
--line-digits: 2;
|
|
4349
4359
|
--line-number-start: -1;
|
|
@@ -4376,7 +4386,7 @@ blockquote.t-editor__quote > * {
|
|
|
4376
4386
|
<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>
|
|
4377
4387
|
</svg></button>
|
|
4378
4388
|
</h4>
|
|
4379
|
-
<div id="
|
|
4389
|
+
<div id="TVFYZLlPmNg921Rc2kBtM" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4380
4390
|
<pre style="
|
|
4381
4391
|
--line-digits: 2;
|
|
4382
4392
|
--line-number-start: -1;
|
|
@@ -4409,7 +4419,7 @@ blockquote.t-editor__quote > * {
|
|
|
4409
4419
|
<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>
|
|
4410
4420
|
</svg></button>
|
|
4411
4421
|
</h4>
|
|
4412
|
-
<div id="
|
|
4422
|
+
<div id="ttXWtbbKxC955cMDwv5tp" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4413
4423
|
<pre style="
|
|
4414
4424
|
--line-digits: 2;
|
|
4415
4425
|
--line-number-start: -1;
|
|
@@ -4440,7 +4450,7 @@ blockquote.t-editor__quote > * {
|
|
|
4440
4450
|
<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>
|
|
4441
4451
|
</svg></button>
|
|
4442
4452
|
</h4>
|
|
4443
|
-
<div id="
|
|
4453
|
+
<div id="EBj986Ld28NAoGujvO8tG" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4444
4454
|
<pre style="
|
|
4445
4455
|
--line-digits: 2;
|
|
4446
4456
|
--line-number-start: -1;
|
|
@@ -4470,7 +4480,7 @@ blockquote.t-editor__quote > * {
|
|
|
4470
4480
|
<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>
|
|
4471
4481
|
</svg></button>
|
|
4472
4482
|
</h4>
|
|
4473
|
-
<div id="
|
|
4483
|
+
<div id="hd2WRwJ7AzVWx0jMWHE0w" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4474
4484
|
<pre style="
|
|
4475
4485
|
--line-digits: 2;
|
|
4476
4486
|
--line-number-start: -1;
|
|
@@ -4499,7 +4509,7 @@ blockquote.t-editor__quote > * {
|
|
|
4499
4509
|
<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>
|
|
4500
4510
|
</svg></button>
|
|
4501
4511
|
</h4>
|
|
4502
|
-
<div id="
|
|
4512
|
+
<div id="y3oBrUch02GqvfC2rHsMU" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4503
4513
|
<pre style="
|
|
4504
4514
|
--line-digits: 2;
|
|
4505
4515
|
--line-number-start: -1;
|
|
@@ -4530,7 +4540,7 @@ blockquote.t-editor__quote > * {
|
|
|
4530
4540
|
<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>
|
|
4531
4541
|
</svg></button>
|
|
4532
4542
|
</h4>
|
|
4533
|
-
<div id="
|
|
4543
|
+
<div id="OsLz9WvowRVQSrhvlGL3E" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4534
4544
|
<pre style="
|
|
4535
4545
|
--line-digits: 2;
|
|
4536
4546
|
--line-number-start: -1;
|
|
@@ -4561,7 +4571,7 @@ blockquote.t-editor__quote > * {
|
|
|
4561
4571
|
<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>
|
|
4562
4572
|
</svg></button>
|
|
4563
4573
|
</h3>
|
|
4564
|
-
<div id="
|
|
4574
|
+
<div id="NoNxpMI727eAAPTONlgeB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4565
4575
|
<pre style="
|
|
4566
4576
|
--line-digits: 2;
|
|
4567
4577
|
--line-number-start: -1;
|
|
@@ -4597,7 +4607,7 @@ blockquote.t-editor__quote > * {
|
|
|
4597
4607
|
<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>
|
|
4598
4608
|
</svg></button>
|
|
4599
4609
|
</h4>
|
|
4600
|
-
<div id="
|
|
4610
|
+
<div id="RSFnicSKjRgH8aiFFng52" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4601
4611
|
<pre style="
|
|
4602
4612
|
--line-digits: 2;
|
|
4603
4613
|
--line-number-start: -1;
|
|
@@ -4626,7 +4636,7 @@ blockquote.t-editor__quote > * {
|
|
|
4626
4636
|
<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>
|
|
4627
4637
|
</svg></button>
|
|
4628
4638
|
</h4>
|
|
4629
|
-
<div id="
|
|
4639
|
+
<div id="pmSuX32Yre5tdydXO1Rwl" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4630
4640
|
<pre style="
|
|
4631
4641
|
--line-digits: 2;
|
|
4632
4642
|
--line-number-start: -1;
|
|
@@ -4656,7 +4666,7 @@ blockquote.t-editor__quote > * {
|
|
|
4656
4666
|
<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>
|
|
4657
4667
|
</svg></button>
|
|
4658
4668
|
</h4>
|
|
4659
|
-
<div id="
|
|
4669
|
+
<div id="zJ0CDlCQANTrxDHXsh1SQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4660
4670
|
<pre style="
|
|
4661
4671
|
--line-digits: 2;
|
|
4662
4672
|
--line-number-start: -1;
|
|
@@ -4685,7 +4695,7 @@ blockquote.t-editor__quote > * {
|
|
|
4685
4695
|
<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>
|
|
4686
4696
|
</svg></button>
|
|
4687
4697
|
</h4>
|
|
4688
|
-
<div id="
|
|
4698
|
+
<div id="SzkI7QfPE0O5HU9uZyBsE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4689
4699
|
<pre style="
|
|
4690
4700
|
--line-digits: 2;
|
|
4691
4701
|
--line-number-start: -1;
|
|
@@ -4720,7 +4730,7 @@ blockquote.t-editor__quote > * {
|
|
|
4720
4730
|
<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>
|
|
4721
4731
|
</svg></button>
|
|
4722
4732
|
</h4>
|
|
4723
|
-
<div id="
|
|
4733
|
+
<div id="KMoNIlacTsJ0wfrSJteKV" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4724
4734
|
<pre style="
|
|
4725
4735
|
--line-digits: 2;
|
|
4726
4736
|
--line-number-start: -1;
|
|
@@ -4751,7 +4761,7 @@ blockquote.t-editor__quote > * {
|
|
|
4751
4761
|
<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>
|
|
4752
4762
|
</svg></button>
|
|
4753
4763
|
</h4>
|
|
4754
|
-
<div id="
|
|
4764
|
+
<div id="G55ny4esDc3IPRraFDYgf" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4755
4765
|
<pre style="
|
|
4756
4766
|
--line-digits: 2;
|
|
4757
4767
|
--line-number-start: -1;
|
|
@@ -4781,7 +4791,7 @@ blockquote.t-editor__quote > * {
|
|
|
4781
4791
|
<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>
|
|
4782
4792
|
</svg></button>
|
|
4783
4793
|
</h3>
|
|
4784
|
-
<div id="
|
|
4794
|
+
<div id="Sob5ngi9kaZuyS8mFxuBI" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4785
4795
|
<pre style="
|
|
4786
4796
|
--line-digits: 2;
|
|
4787
4797
|
--line-number-start: -1;
|
|
@@ -4816,7 +4826,7 @@ blockquote.t-editor__quote > * {
|
|
|
4816
4826
|
<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>
|
|
4817
4827
|
</svg></button>
|
|
4818
4828
|
</h4>
|
|
4819
|
-
<div id="
|
|
4829
|
+
<div id="nVAoK9ZcdeVFTLfTpyjvD" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4820
4830
|
<pre style="
|
|
4821
4831
|
--line-digits: 2;
|
|
4822
4832
|
--line-number-start: -1;
|
|
@@ -4856,7 +4866,7 @@ blockquote.t-editor__quote > * {
|
|
|
4856
4866
|
<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>
|
|
4857
4867
|
</svg></button>
|
|
4858
4868
|
</h4>
|
|
4859
|
-
<div id="
|
|
4869
|
+
<div id="LQ31CTtHQs1GVifs85Sqa" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4860
4870
|
<pre style="
|
|
4861
4871
|
--line-digits: 2;
|
|
4862
4872
|
--line-number-start: -1;
|
|
@@ -4889,7 +4899,7 @@ blockquote.t-editor__quote > * {
|
|
|
4889
4899
|
<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>
|
|
4890
4900
|
</svg></button>
|
|
4891
4901
|
</h4>
|
|
4892
|
-
<div id="
|
|
4902
|
+
<div id="qPWBdBV0ykQrHAlItRwz8" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4893
4903
|
<pre style="
|
|
4894
4904
|
--line-digits: 2;
|
|
4895
4905
|
--line-number-start: -1;
|
|
@@ -4920,7 +4930,7 @@ blockquote.t-editor__quote > * {
|
|
|
4920
4930
|
<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>
|
|
4921
4931
|
</svg></button>
|
|
4922
4932
|
</h4>
|
|
4923
|
-
<div id="
|
|
4933
|
+
<div id="mJtEJraaW0ruIeYbRRt1p" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4924
4934
|
<pre style="
|
|
4925
4935
|
--line-digits: 2;
|
|
4926
4936
|
--line-number-start: -1;
|
|
@@ -4948,7 +4958,7 @@ blockquote.t-editor__quote > * {
|
|
|
4948
4958
|
<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>
|
|
4949
4959
|
</svg></button>
|
|
4950
4960
|
</h4>
|
|
4951
|
-
<div id="
|
|
4961
|
+
<div id="4QAKEHPxFTNMB8swxFUq7" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4952
4962
|
<pre style="
|
|
4953
4963
|
--line-digits: 2;
|
|
4954
4964
|
--line-number-start: -1;
|
|
@@ -4982,7 +4992,7 @@ blockquote.t-editor__quote > * {
|
|
|
4982
4992
|
<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>
|
|
4983
4993
|
</svg></button>
|
|
4984
4994
|
</h3>
|
|
4985
|
-
<div id="
|
|
4995
|
+
<div id="Tn6JsDISoBjKpwP29SABK" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
4986
4996
|
<pre style="
|
|
4987
4997
|
--line-digits: 2;
|
|
4988
4998
|
--line-number-start: -1;
|
|
@@ -5014,7 +5024,7 @@ blockquote.t-editor__quote > * {
|
|
|
5014
5024
|
<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>
|
|
5015
5025
|
</svg></button>
|
|
5016
5026
|
</h4>
|
|
5017
|
-
<div id="
|
|
5027
|
+
<div id="dncRIqDjTM2viRBflpaOF" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5018
5028
|
<pre style="
|
|
5019
5029
|
--line-digits: 2;
|
|
5020
5030
|
--line-number-start: -1;
|
|
@@ -5041,7 +5051,7 @@ blockquote.t-editor__quote > * {
|
|
|
5041
5051
|
<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>
|
|
5042
5052
|
</svg></button>
|
|
5043
5053
|
</h4>
|
|
5044
|
-
<div id="
|
|
5054
|
+
<div id="avXfy8FXQ284cJqQWKmtv" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5045
5055
|
<pre style="
|
|
5046
5056
|
--line-digits: 2;
|
|
5047
5057
|
--line-number-start: -1;
|
|
@@ -5069,7 +5079,7 @@ blockquote.t-editor__quote > * {
|
|
|
5069
5079
|
<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>
|
|
5070
5080
|
</svg></button>
|
|
5071
5081
|
</h3>
|
|
5072
|
-
<div id="
|
|
5082
|
+
<div id="Xrn5DXG1JDQxfDZDQNUl1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5073
5083
|
<pre style="
|
|
5074
5084
|
--line-digits: 2;
|
|
5075
5085
|
--line-number-start: -1;
|
|
@@ -5104,7 +5114,7 @@ blockquote.t-editor__quote > * {
|
|
|
5104
5114
|
<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>
|
|
5105
5115
|
</svg></button>
|
|
5106
5116
|
</h4>
|
|
5107
|
-
<div id="
|
|
5117
|
+
<div id="ZVEObUnetvWOiCNK2Pqug" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5108
5118
|
<pre style="
|
|
5109
5119
|
--line-digits: 2;
|
|
5110
5120
|
--line-number-start: -1;
|
|
@@ -5132,7 +5142,7 @@ blockquote.t-editor__quote > * {
|
|
|
5132
5142
|
<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>
|
|
5133
5143
|
</svg></button>
|
|
5134
5144
|
</h4>
|
|
5135
|
-
<div id="
|
|
5145
|
+
<div id="DQr0ZEGV0rp2Z8DdtAUBS" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5136
5146
|
<pre style="
|
|
5137
5147
|
--line-digits: 2;
|
|
5138
5148
|
--line-number-start: -1;
|
|
@@ -5162,7 +5172,7 @@ blockquote.t-editor__quote > * {
|
|
|
5162
5172
|
<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>
|
|
5163
5173
|
</svg></button>
|
|
5164
5174
|
</h4>
|
|
5165
|
-
<div id="
|
|
5175
|
+
<div id="Bo3rZ4qmXbxPDXMwUpDyW" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5166
5176
|
<pre style="
|
|
5167
5177
|
--line-digits: 2;
|
|
5168
5178
|
--line-number-start: -1;
|
|
@@ -5193,7 +5203,7 @@ blockquote.t-editor__quote > * {
|
|
|
5193
5203
|
<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>
|
|
5194
5204
|
</svg></button>
|
|
5195
5205
|
</h4>
|
|
5196
|
-
<div id="
|
|
5206
|
+
<div id="pMw07tMWDNkh1MhDj3Lc6" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5197
5207
|
<pre style="
|
|
5198
5208
|
--line-digits: 2;
|
|
5199
5209
|
--line-number-start: -1;
|
|
@@ -5222,7 +5232,7 @@ blockquote.t-editor__quote > * {
|
|
|
5222
5232
|
<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>
|
|
5223
5233
|
</svg></button>
|
|
5224
5234
|
</h4>
|
|
5225
|
-
<div id="
|
|
5235
|
+
<div id="Kj9qSkh1ZCKJG3lhWYOey" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5226
5236
|
<pre style="
|
|
5227
5237
|
--line-digits: 2;
|
|
5228
5238
|
--line-number-start: -1;
|
|
@@ -5252,7 +5262,7 @@ blockquote.t-editor__quote > * {
|
|
|
5252
5262
|
<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>
|
|
5253
5263
|
</svg></button>
|
|
5254
5264
|
</h3>
|
|
5255
|
-
<div id="
|
|
5265
|
+
<div id="8zL0l5tFAaOcLCCCYWPyQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5256
5266
|
<pre style="
|
|
5257
5267
|
--line-digits: 2;
|
|
5258
5268
|
--line-number-start: -1;
|
|
@@ -5261,14 +5271,15 @@ blockquote.t-editor__quote > * {
|
|
|
5261
5271
|
<span class="t-code__line" data-line-number="2">Manage your Scalar schemas</span>
|
|
5262
5272
|
<span class="t-code__line" data-line-number="3"></span>
|
|
5263
5273
|
<span class="t-code__line" data-line-number="4">Options:</span>
|
|
5264
|
-
<span class="t-code__line" data-line-number="5"> -h, --help
|
|
5274
|
+
<span class="t-code__line" data-line-number="5"> -h, --help display help for command</span>
|
|
5265
5275
|
<span class="t-code__line" data-line-number="6"></span>
|
|
5266
5276
|
<span class="t-code__line" data-line-number="7">Commands:</span>
|
|
5267
|
-
<span class="t-code__line" data-line-number="8"> delete [options]
|
|
5268
|
-
<span class="t-code__line" data-line-number="9"> update [options]
|
|
5269
|
-
<span class="t-code__line" data-line-number="10"> list [options]
|
|
5270
|
-
<span class="t-code__line" data-line-number="11">
|
|
5271
|
-
<span class="t-code__line" data-line-number="12">
|
|
5277
|
+
<span class="t-code__line" data-line-number="8"> delete [options] Delete a schema.</span>
|
|
5278
|
+
<span class="t-code__line" data-line-number="9"> update [options] Update schema metadata.</span>
|
|
5279
|
+
<span class="t-code__line" data-line-number="10"> list [options] List all schemas for a team namespace</span>
|
|
5280
|
+
<span class="t-code__line" data-line-number="11"> get [options] [namespace] [slug] Get a schema document version from the Scalar registry</span>
|
|
5281
|
+
<span class="t-code__line" data-line-number="12"> publish [options] [file] Publish a shared schema to the Scalar registry</span>
|
|
5282
|
+
<span class="t-code__line" data-line-number="13"> help [command] display help for command</span>
|
|
5272
5283
|
</code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
|
|
5273
5284
|
<svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
|
|
5274
5285
|
<path d="M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"></path>
|
|
@@ -5286,7 +5297,7 @@ blockquote.t-editor__quote > * {
|
|
|
5286
5297
|
<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>
|
|
5287
5298
|
</svg></button>
|
|
5288
5299
|
</h4>
|
|
5289
|
-
<div id="
|
|
5300
|
+
<div id="JjG29ClVWkZxfF0C6tepc" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5290
5301
|
<pre style="
|
|
5291
5302
|
--line-digits: 2;
|
|
5292
5303
|
--line-number-start: -1;
|
|
@@ -5315,7 +5326,7 @@ blockquote.t-editor__quote > * {
|
|
|
5315
5326
|
<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>
|
|
5316
5327
|
</svg></button>
|
|
5317
5328
|
</h4>
|
|
5318
|
-
<div id="
|
|
5329
|
+
<div id="QnhtLogXgNCLrxsRfK6x6" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5319
5330
|
<pre style="
|
|
5320
5331
|
--line-digits: 2;
|
|
5321
5332
|
--line-number-start: -1;
|
|
@@ -5347,7 +5358,7 @@ blockquote.t-editor__quote > * {
|
|
|
5347
5358
|
<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>
|
|
5348
5359
|
</svg></button>
|
|
5349
5360
|
</h4>
|
|
5350
|
-
<div id="
|
|
5361
|
+
<div id="L97BD22Pt6gxLe58g4QZL" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5351
5362
|
<pre style="
|
|
5352
5363
|
--line-digits: 2;
|
|
5353
5364
|
--line-number-start: -1;
|
|
@@ -5366,6 +5377,40 @@ blockquote.t-editor__quote > * {
|
|
|
5366
5377
|
<path d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"></path>
|
|
5367
5378
|
</svg></button>
|
|
5368
5379
|
</div>
|
|
5380
|
+
<h4 id="get-1" class="scroll-pad interaction-observer-heading t-editor__heading" data-level="4" data-scalar-type="heading">
|
|
5381
|
+
get
|
|
5382
|
+
<button class="notify-container" aria-label="Copy link to heading"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" aria-hidden="true" class="icon notify">
|
|
5383
|
+
<path d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"></path>
|
|
5384
|
+
</svg>
|
|
5385
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" aria-hidden="true" class="icon">
|
|
5386
|
+
<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>
|
|
5387
|
+
</svg></button>
|
|
5388
|
+
</h4>
|
|
5389
|
+
<div id="lMFitkjJ2gxdeNuoxSBYB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5390
|
+
<pre style="
|
|
5391
|
+
--line-digits: 2;
|
|
5392
|
+
--line-number-start: -1;
|
|
5393
|
+
" class="t-editor__code custom-code custom-scroll" data-focus="" data-highlight="" data-added="" data-removed="" data-line-number-start="0"><code class="hljs language-plaintext" language="plaintext"><span class="t-code__line" data-line-number="0">Usage: scalar schema get [options] [namespace] [slug]</span>
|
|
5394
|
+
<span class="t-code__line" data-line-number="1"></span>
|
|
5395
|
+
<span class="t-code__line" data-line-number="2">Get a schema document version from the Scalar registry</span>
|
|
5396
|
+
<span class="t-code__line" data-line-number="3"></span>
|
|
5397
|
+
<span class="t-code__line" data-line-number="4">Arguments:</span>
|
|
5398
|
+
<span class="t-code__line" data-line-number="5"> namespace Team namespace</span>
|
|
5399
|
+
<span class="t-code__line" data-line-number="6"> slug Schema slug</span>
|
|
5400
|
+
<span class="t-code__line" data-line-number="7"></span>
|
|
5401
|
+
<span class="t-code__line" data-line-number="8">Options:</span>
|
|
5402
|
+
<span class="t-code__line" data-line-number="9"> --version <version> Schema version (defaults to latest)</span>
|
|
5403
|
+
<span class="t-code__line" data-line-number="10"> --format <format> Output format (json or yaml) (default: "json")</span>
|
|
5404
|
+
<span class="t-code__line" data-line-number="11"> -o, --output <file> Output file (defaults to stdout)</span>
|
|
5405
|
+
<span class="t-code__line" data-line-number="12"> -h, --help display help for command</span>
|
|
5406
|
+
</code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
|
|
5407
|
+
<svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
|
|
5408
|
+
<path d="M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"></path>
|
|
5409
|
+
</svg>
|
|
5410
|
+
<svg class="lang-success" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
|
|
5411
|
+
<path d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"></path>
|
|
5412
|
+
</svg></button>
|
|
5413
|
+
</div>
|
|
5369
5414
|
<h4 id="publish-2" class="scroll-pad interaction-observer-heading t-editor__heading" data-level="4" data-scalar-type="heading">
|
|
5370
5415
|
publish
|
|
5371
5416
|
<button class="notify-container" aria-label="Copy link to heading"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" aria-hidden="true" class="icon notify">
|
|
@@ -5375,7 +5420,7 @@ blockquote.t-editor__quote > * {
|
|
|
5375
5420
|
<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>
|
|
5376
5421
|
</svg></button>
|
|
5377
5422
|
</h4>
|
|
5378
|
-
<div id="
|
|
5423
|
+
<div id="iyVtXl3btiT83l2YaQUmM" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
|
|
5379
5424
|
<pre style="
|
|
5380
5425
|
--line-digits: 2;
|
|
5381
5426
|
--line-number-start: -1;
|
|
@@ -5415,7 +5460,7 @@ blockquote.t-editor__quote > * {
|
|
|
5415
5460
|
</svg></button>
|
|
5416
5461
|
</h2>
|
|
5417
5462
|
<p class="t-editor__paragraph">To validate your OpenAPI file in GitHub Actions, add this workflow:</p>
|
|
5418
|
-
<div id="
|
|
5463
|
+
<div id="ccEKgoUmhHQAe4FOLdUEK" class="t-editor__code-container" data-lang="yml" style="position: relative;">
|
|
5419
5464
|
<pre style="
|
|
5420
5465
|
--line-digits: 2;
|
|
5421
5466
|
--line-number-start: -1;
|
|
@@ -5462,7 +5507,7 @@ blockquote.t-editor__quote > * {
|
|
|
5462
5507
|
</svg></button>
|
|
5463
5508
|
</h2>
|
|
5464
5509
|
<p class="t-editor__paragraph">Set up the development environment:</p>
|
|
5465
|
-
<div id="
|
|
5510
|
+
<div id="qDuHlRHnZfEKrcCv49ZUE" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5466
5511
|
<pre style="
|
|
5467
5512
|
--line-digits: 2;
|
|
5468
5513
|
--line-number-start: -1;
|
|
@@ -5477,7 +5522,7 @@ blockquote.t-editor__quote > * {
|
|
|
5477
5522
|
</svg></button>
|
|
5478
5523
|
</div>
|
|
5479
5524
|
<p class="t-editor__paragraph">To symlink the package and use it globally on your machine:</p>
|
|
5480
|
-
<div id="
|
|
5525
|
+
<div id="cuUqnV289l7sd4PycsF2T" class="t-editor__code-container" data-lang="bash" style="position: relative;">
|
|
5481
5526
|
<pre style="
|
|
5482
5527
|
--line-digits: 2;
|
|
5483
5528
|
--line-number-start: -1;
|