@scalar/cli 1.9.9 → 2.0.1

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.
Files changed (4) hide show
  1. package/README.md +26 -8
  2. package/docs.html +233 -126
  3. package/index.js +765 -437
  4. package/package.json +14 -14
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.16.0/node_modules/@scalar/themes/dist/style.css */
11
+ /* ../../node_modules/.pnpm/@scalar+themes@0.16.2/node_modules/@scalar/themes/dist/style.css */
12
12
  @layer scalar-base, scalar-theme;
13
13
  @layer scalar-base {
14
14
  body {
@@ -72,7 +72,14 @@
72
72
  border-radius: var(--scalar-radius);
73
73
  border-width: 1px;
74
74
  }
75
- input::placeholder {
75
+ input,
76
+ select,
77
+ textarea {
78
+ text-align: start;
79
+ }
80
+ input::placeholder,
81
+ text-area::placeholder,
82
+ ::-webkit-input-placeholder {
76
83
  color: var(--scalar-color-3);
77
84
  font-family: var(--scalar-font);
78
85
  }
@@ -390,7 +397,7 @@
390
397
  }
391
398
  }
392
399
 
393
- /* ../../node_modules/.pnpm/@scalar+themes@0.16.0/node_modules/@scalar/themes/dist/fonts/fonts.css */
400
+ /* ../../node_modules/.pnpm/@scalar+themes@0.16.2/node_modules/@scalar/themes/dist/fonts/fonts.css */
394
401
  @font-face {
395
402
  font-family: "Inter";
396
403
  font-style: normal;
@@ -1520,6 +1527,20 @@ body {
1520
1527
  }
1521
1528
  }
1522
1529
 
1530
+ /* ../../packages/css/src/guides/prose.css */
1531
+ .t-prose > * + * {
1532
+ margin-top: var(--scalar-block-spacing);
1533
+ }
1534
+ .t-prose > .t-editor__line-break,
1535
+ .t-prose > .t-editor__line-break + * {
1536
+ margin-top: calc(var(--scalar-heading-spacing) * 0.75);
1537
+ }
1538
+ * > .t-prose > .t-editor__heading:first-child,
1539
+ .t-prose > .t-editor__heading:first-child {
1540
+ margin-top: 0;
1541
+ scroll-margin-top: 100vh;
1542
+ }
1543
+
1523
1544
  /* ../../packages/css/src/guides/editor.css */
1524
1545
  .t-editor {
1525
1546
  padding: 0 50px 88px;
@@ -1536,14 +1557,6 @@ body {
1536
1557
  padding: 0 0 44px;
1537
1558
  max-width: var(--scalar-container-width);
1538
1559
  }
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
1560
  @media (max-width: 1000px) {
1548
1561
  .t-editor .page-node {
1549
1562
  padding: 0 0 48px;
@@ -2032,12 +2045,6 @@ h1.t-editor__heading {
2032
2045
  margin-top: 60px;
2033
2046
  overflow-wrap: anywhere;
2034
2047
  }
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
2048
  h2.t-editor__heading {
2042
2049
  --font-size: var(--scalar-heading-2);
2043
2050
  font-size: var(--font-size, var(--scalar-heading-2));
@@ -2065,6 +2072,9 @@ h4.t-editor__heading {
2065
2072
  .t-editor__table .t-editor__heading:first-of-type {
2066
2073
  margin-top: 0;
2067
2074
  }
2075
+ h1.t-editor__heading:first-of-type {
2076
+ margin-top: 10px;
2077
+ }
2068
2078
  .t-editor__page-title {
2069
2079
  --font-size: var(--scalar-heading-1);
2070
2080
  --font-color: var(--scalar-color-1);
@@ -2099,15 +2109,15 @@ h1.t-editor__heading {
2099
2109
  .t-editor__heading.t-editor__standard-heading {
2100
2110
  margin-top: 0;
2101
2111
  }
2102
- .prose-content > * + h2.t-editor__standard-heading {
2112
+ .t-prose > * + h2.t-editor__standard-heading {
2103
2113
  margin-top: 44px;
2104
2114
  }
2105
- .prose-content > * + h3.t-editor__standard-heading,
2106
- .prose-content > * + h4.t-editor__standard-heading {
2115
+ .t-prose > * + h3.t-editor__standard-heading,
2116
+ .t-prose > * + h4.t-editor__standard-heading {
2107
2117
  margin-top: 28px;
2108
2118
  }
2109
- .prose-content > * + h5.t-editor__standard-heading,
2110
- .prose-content > * + h6.t-editor__standard-heading {
2119
+ .t-prose > * + h5.t-editor__standard-heading,
2120
+ .t-prose > * + h6.t-editor__standard-heading {
2111
2121
  margin-top: 24px;
2112
2122
  }
2113
2123
 
@@ -2121,8 +2131,8 @@ h1.t-editor__heading {
2121
2131
  .t-editor__list li {
2122
2132
  position: relative;
2123
2133
  }
2124
- .t-editor ul,
2125
- .t-editor ol {
2134
+ .t-prose ul,
2135
+ .t-prose ol {
2126
2136
  padding-left: 1.6em;
2127
2137
  }
2128
2138
  ol.t-editor__list > li::marker,
@@ -2409,13 +2419,6 @@ ul.t-editor__list > * > li::before {
2409
2419
  padding-top: 16px;
2410
2420
  padding-bottom: 16px;
2411
2421
  }
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
2422
  .custom-tabs-container input:nth-of-type(1):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(1),
2420
2423
  .custom-tabs-container input:nth-of-type(2):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(2),
2421
2424
  .custom-tabs-container input:nth-of-type(3):checked ~ .custom-tabs-navbar .custom-tabs-nav .custom-tabs-tab:nth-of-type(3),
@@ -2554,17 +2557,18 @@ details.t-editor__step .t-editor__step-summary:hover .t-editor__step-marker-icon
2554
2557
 
2555
2558
  /* ../../packages/css/src/guides/text-extensions/checklist.css */
2556
2559
  ul.t-editor__checklist {
2557
- padding-left: 0;
2560
+ font-size: var(--scalar-paragraph);
2558
2561
  }
2559
2562
  ul.t-editor__checklist > li {
2560
- align-items: center;
2561
- display: flex;
2562
- gap: 10.5px;
2563
+ position: relative;
2563
2564
  list-style: none;
2564
2565
  line-height: 1.625;
2566
+ padding-left: 7px;
2565
2567
  }
2566
- ul.t-editor__checklist:not(.t-editor__checklist ul) {
2567
- padding-left: 5.5px;
2568
+ .t-editor__checklist label {
2569
+ position: absolute;
2570
+ top: 0.225em;
2571
+ left: -1.4em;
2568
2572
  }
2569
2573
  .t-editor__checklist .t-editor__paragraph {
2570
2574
  margin-top: 0;
@@ -2600,8 +2604,8 @@ ul.t-editor__checklist:not(.t-editor__checklist ul) {
2600
2604
  .t-editor__checklist input[type=checkbox]:checked::before {
2601
2605
  opacity: 1;
2602
2606
  }
2603
- .t-editor ul input[type=checkbox],
2604
- .t-editor ol input[type=checkbox] {
2607
+ .t-prose ul input[type=checkbox],
2608
+ .t-prose ol input[type=checkbox] {
2605
2609
  margin: 0;
2606
2610
  vertical-align: middle;
2607
2611
  }
@@ -2709,6 +2713,9 @@ ul.contains-task-list > li {
2709
2713
  .t-editor__code-group > .t-editor__code-container > :first-child {
2710
2714
  margin-top: 0;
2711
2715
  }
2716
+ .t-editor__code-group > [data-node-view-content] .t-editor__code-container > :first-child {
2717
+ margin-top: 0;
2718
+ }
2712
2719
  .t-editor__code-group > input.code-group-input:nth-of-type(1):checked ~ .code-group-nav .code-group-label:nth-of-type(1),
2713
2720
  .t-editor__code-group > input.code-group-input:nth-of-type(2):checked ~ .code-group-nav .code-group-label:nth-of-type(2),
2714
2721
  .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 +2815,7 @@ ul.contains-task-list > li {
2808
2815
  .t-code.code__fullheight {
2809
2816
  max-height: none;
2810
2817
  }
2818
+ .t-editor__code [data-node-view-content],
2811
2819
  .t-editor__code [data-node-view-content] span {
2812
2820
  line-height: 1.5;
2813
2821
  }
@@ -2870,6 +2878,7 @@ pre.t-code--numbered {
2870
2878
  color: var(--font-color, var(--scalar-color-2));
2871
2879
  font-size: var(--font-size, var(--scalar-mini));
2872
2880
  font-weight: var(--font-weight, var(--scalar-regular));
2881
+ line-height: 1.15;
2873
2882
  text-align: center;
2874
2883
  padding: 4px 0;
2875
2884
  font-style: normal;
@@ -2910,7 +2919,7 @@ pre.t-code--numbered {
2910
2919
  }
2911
2920
 
2912
2921
  /* ../../packages/css/src/guides/text-extensions/image.css */
2913
- figure.t-editor__image {
2922
+ .t-editor__image:not(img) {
2914
2923
  display: flex;
2915
2924
  width: fit-content;
2916
2925
  margin: auto;
@@ -2933,7 +2942,7 @@ figure.t-editor__image {
2933
2942
  img.t-editor__image {
2934
2943
  max-width: 100%;
2935
2944
  }
2936
- figure.t-editor__image.custom-image-size-full,
2945
+ .t-editor__image.custom-image-size-full:not(img),
2937
2946
  figure.t-editor__image.custom-image-size-full img {
2938
2947
  width: 100%;
2939
2948
  }
@@ -2947,48 +2956,104 @@ figure.t-editor__image.custom-image-size-full img {
2947
2956
  width: 100%;
2948
2957
  aspect-ratio: 16 / 9;
2949
2958
  }
2959
+ .t-editor__embed img {
2960
+ display: block;
2961
+ width: 100%;
2962
+ height: auto;
2963
+ border-radius: var(--scalar-radius);
2964
+ }
2965
+ .t-editor__embed--pdf iframe {
2966
+ aspect-ratio: auto;
2967
+ height: 80vh;
2968
+ max-height: 800px;
2969
+ border-radius: var(--scalar-radius);
2970
+ }
2971
+ .t-editor__embed--csv .t-editor__table-wrapper {
2972
+ margin-top: 0;
2973
+ width: 100%;
2974
+ max-height: 480px;
2975
+ overflow-y: auto;
2976
+ overscroll-behavior: none;
2977
+ }
2978
+ .t-editor__embed--csv .t-editor__table {
2979
+ table-layout: auto;
2980
+ }
2981
+ .t-editor__embed--csv .t-editor__table th,
2982
+ .t-editor__embed--csv .t-editor__table td {
2983
+ min-width: 8rem;
2984
+ overflow-wrap: break-word;
2985
+ }
2986
+ .t-editor__embed--csv .t-editor__table thead th {
2987
+ position: sticky;
2988
+ top: 0;
2989
+ z-index: 1;
2990
+ }
2950
2991
  .t-editor__embed figcaption {
2951
2992
  display: block;
2952
2993
  text-align: center;
2953
2994
  font-size: var(--scalar-mini);
2954
2995
  font-style: normal;
2996
+ line-height: 1.15;
2955
2997
  margin-top: 8px;
2956
2998
  }
2957
2999
 
2958
3000
  /* ../../packages/css/src/guides/text-extensions/file.css */
2959
3001
  .t-editor__file .file {
2960
- border-radius: var(--scalar-radius);
2961
- font-family: var(--scalar-font-code);
2962
- font-size: var(--scalar-paragraph);
2963
- background: var(--scalar-background-2);
2964
- padding: 11px 16px 11px 9px;
2965
- overflow: auto;
2966
3002
  display: flex;
2967
- justify-content: space-between;
2968
3003
  align-items: center;
3004
+ justify-content: space-between;
3005
+ gap: 12px;
3006
+ border-radius: var(--scalar-radius);
3007
+ background: var(--scalar-background-2);
3008
+ padding: 9px 12px;
3009
+ color: var(--scalar-color-1);
3010
+ text-decoration: none;
2969
3011
  cursor: pointer;
2970
3012
  }
2971
3013
  .t-editor__file .file:hover {
2972
- opacity: 0.95;
2973
- cursor: pointer;
3014
+ background: var(--scalar-background-3);
2974
3015
  }
2975
- .t-editor__file .file i {
2976
- font-size: 8px;
2977
- width: 24px;
3016
+ .t-editor__file .file-meta {
3017
+ display: flex;
3018
+ align-items: center;
3019
+ gap: 10px;
3020
+ min-width: 0;
3021
+ }
3022
+ .t-editor__file .file-extension {
3023
+ flex-shrink: 0;
3024
+ min-width: 34px;
2978
3025
  height: 30px;
2979
- line-height: 30px;
3026
+ padding: 0 6px;
2980
3027
  border-radius: var(--scalar-radius);
2981
3028
  background: var(--scalar-background-1);
2982
- font-weight: var(--scalar-bold);
3029
+ box-shadow: 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
2983
3030
  color: var(--scalar-color-accent);
2984
- box-shadow: 0 -2px 0 var(--scalar-border-color);
2985
- display: inline-block;
2986
- text-align: center;
3031
+ font-family: var(--scalar-font-code);
3032
+ font-size: var(--scalar-micro);
2987
3033
  font-style: normal;
3034
+ font-weight: var(--scalar-bold);
3035
+ line-height: 30px;
3036
+ text-align: center;
2988
3037
  }
2989
- .t-editor__file .file span {
3038
+ .t-editor__file .file-name {
3039
+ overflow: hidden;
2990
3040
  font-size: var(--scalar-paragraph);
2991
- padding-left: 6px;
3041
+ text-overflow: ellipsis;
3042
+ white-space: nowrap;
3043
+ }
3044
+ .t-editor__file .file-download {
3045
+ display: flex;
3046
+ flex-shrink: 0;
3047
+ width: 18px;
3048
+ height: 18px;
3049
+ color: var(--scalar-color-2);
3050
+ }
3051
+ .t-editor__file .file-download svg {
3052
+ width: 100%;
3053
+ height: 100%;
3054
+ }
3055
+ .t-editor__file .file:hover .file-download {
3056
+ color: var(--scalar-color-1);
2992
3057
  }
2993
3058
 
2994
3059
  /* ../../packages/css/src/guides/text-extensions/card.css */
@@ -3005,9 +3070,10 @@ figure.t-editor__image.custom-image-size-full img {
3005
3070
  .t-editor__card .card-content {
3006
3071
  display: flex;
3007
3072
  flex-direction: column;
3008
- align-items: start;
3009
3073
  gap: var(--scalar-card-inter-element-gap);
3010
3074
  line-height: var(--line-height);
3075
+ flex: 1;
3076
+ min-width: 0;
3011
3077
  }
3012
3078
  .t-editor__card .card-content__text {
3013
3079
  color: var(--scalar-color-2);
@@ -3022,10 +3088,14 @@ figure.t-editor__image.custom-image-size-full img {
3022
3088
  gap: var(--scalar-card-inter-element-gap);
3023
3089
  color: var(--scalar-color-1);
3024
3090
  font-weight: var(--scalar-bold);
3091
+ font-size: var(--scalar-paragraph);
3025
3092
  }
3026
3093
  .t-editor__card .t-editor__paragraph {
3027
3094
  --font-color: var(--scalar-color-2);
3028
3095
  }
3096
+ .t-editor__card .t-editor__list .t-editor__paragraph {
3097
+ --font-color: var(--scalar-color-1);
3098
+ }
3029
3099
  .t-editor__card > .t-editor__icon,
3030
3100
  .t-editor__card .card-content > .t-editor__icon {
3031
3101
  display: flex;
@@ -3171,6 +3241,7 @@ figure.t-editor__image.custom-image-size-full img {
3171
3241
  }
3172
3242
  .t-editor__callout .t-editor__paragraph {
3173
3243
  font-size: var(--callout-font-size);
3244
+ line-height: var(--callout-line-height);
3174
3245
  }
3175
3246
  .t-editor__callout .callout-content {
3176
3247
  align-items: flex-start;
@@ -3383,12 +3454,13 @@ blockquote.t-editor__quote > * {
3383
3454
  .t-editor__table [align=right] {
3384
3455
  text-align: right;
3385
3456
  }
3386
- .t-editor__table tr:nth-child(2n) {
3457
+ .t-editor__table tr:nth-child(2n of :has(td)) {
3387
3458
  background-color: color-mix(in srgb, var(--scalar-background-2), transparent);
3388
3459
  }
3389
3460
  .t-editor__table .t-editor__paragraph {
3390
3461
  font-weight: inherit;
3391
3462
  font-size: inherit;
3463
+ line-height: inherit;
3392
3464
  margin-top: 0;
3393
3465
  overflow-wrap: break-word;
3394
3466
  }
@@ -3780,7 +3852,7 @@ blockquote.t-editor__quote > * {
3780
3852
  <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
3853
  </svg></button>
3782
3854
  </h2>
3783
- <div id="uj7tqP8P9om2IEBkBAIuR" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3855
+ <div id="Mcls1FKpM1Q7X7OCRzrk9" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3784
3856
  <pre style="
3785
3857
  --line-digits: 2;
3786
3858
  --line-number-start: -1;
@@ -3803,7 +3875,7 @@ blockquote.t-editor__quote > * {
3803
3875
  </svg></button>
3804
3876
  </h2>
3805
3877
  <p class="t-editor__paragraph">If you really want to become friends you should install the CLI:</p>
3806
- <div id="O9P3tn4aKKkD6iCcdrnjp" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3878
+ <div id="iNjaMIVbDdtWNtlX5dhQj" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3807
3879
  <pre style="
3808
3880
  --line-digits: 2;
3809
3881
  --line-number-start: -1;
@@ -3827,7 +3899,7 @@ blockquote.t-editor__quote > * {
3827
3899
  </svg></button>
3828
3900
  </h3>
3829
3901
  <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="T1mKN9gF8JsOeBJDpUVH1" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3902
+ <div id="z3BRIXLVYMuRzDFaPcSGN" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3831
3903
  <pre style="
3832
3904
  --line-digits: 2;
3833
3905
  --line-number-start: -1;
@@ -3841,7 +3913,7 @@ blockquote.t-editor__quote > * {
3841
3913
  </svg></button>
3842
3914
  </div>
3843
3915
  <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="zwSxAKvY6aPCl1OZsERl5" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3916
+ <div id="8vj8fotrKBUjoYRyDOveT" class="t-editor__code-container" data-lang="bash" style="position: relative;">
3845
3917
  <pre style="
3846
3918
  --line-digits: 2;
3847
3919
  --line-number-start: -1;
@@ -3867,7 +3939,7 @@ blockquote.t-editor__quote > * {
3867
3939
  <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
3940
  </svg></button>
3869
3941
  </h2>
3870
- <div id="k8NHpyH2Ke9IDEAezQ0wo" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3942
+ <div id="IGYj6s6ICLHB6b8trh8fL" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3871
3943
  <pre style="
3872
3944
  --line-digits: 2;
3873
3945
  --line-number-start: -1;
@@ -3907,7 +3979,7 @@ blockquote.t-editor__quote > * {
3907
3979
  <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
3980
  </svg></button>
3909
3981
  </h3>
3910
- <div id="mjk2fA7YVJoCuVOHoTNeX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3982
+ <div id="JYTIO1QWCjK7tJ4sgLL47" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3911
3983
  <pre style="
3912
3984
  --line-digits: 2;
3913
3985
  --line-number-start: -1;
@@ -3937,7 +4009,7 @@ blockquote.t-editor__quote > * {
3937
4009
  <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
4010
  </svg></button>
3939
4011
  </h4>
3940
- <div id="0dQYCcAW74hJ1uV5t6RzQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4012
+ <div id="tjguB4KcLErXPAO4KLbLv" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3941
4013
  <pre style="
3942
4014
  --line-digits: 2;
3943
4015
  --line-number-start: -1;
@@ -3965,7 +4037,7 @@ blockquote.t-editor__quote > * {
3965
4037
  <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
4038
  </svg></button>
3967
4039
  </h3>
3968
- <div id="lF8qznr6R8srHzKivY0c2" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4040
+ <div id="2rn0uAzcFEYOUp7b4gphf" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3969
4041
  <pre style="
3970
4042
  --line-digits: 2;
3971
4043
  --line-number-start: -1;
@@ -3992,7 +4064,7 @@ blockquote.t-editor__quote > * {
3992
4064
  <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
4065
  </svg></button>
3994
4066
  </h3>
3995
- <div id="kTUxt6iVOXD7jsHoqoJds" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4067
+ <div id="wMEsVeZiYBBXYT6qrDTm5" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
3996
4068
  <pre style="
3997
4069
  --line-digits: 2;
3998
4070
  --line-number-start: -1;
@@ -4025,7 +4097,7 @@ blockquote.t-editor__quote > * {
4025
4097
  <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
4098
  </svg></button>
4027
4099
  </h4>
4028
- <div id="ScjckHj0FfCm2ENGFUUCi" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4100
+ <div id="cVfwovErmmgEZzXrAzKB5" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4029
4101
  <pre style="
4030
4102
  --line-digits: 2;
4031
4103
  --line-number-start: -1;
@@ -4055,7 +4127,7 @@ blockquote.t-editor__quote > * {
4055
4127
  <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
4128
  </svg></button>
4057
4129
  </h4>
4058
- <div id="lySeUlqRXnEwJ2XNn9vlH" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4130
+ <div id="1ODBcCQC8p37Ej0vIwcP9" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4059
4131
  <pre style="
4060
4132
  --line-digits: 2;
4061
4133
  --line-number-start: -1;
@@ -4082,7 +4154,7 @@ blockquote.t-editor__quote > * {
4082
4154
  <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
4155
  </svg></button>
4084
4156
  </h4>
4085
- <div id="BKydneXU8MPpNRHdbH5gS" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4157
+ <div id="cLylQbYvijHcNzzpOFZFY" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4086
4158
  <pre style="
4087
4159
  --line-digits: 2;
4088
4160
  --line-number-start: -1;
@@ -4109,7 +4181,7 @@ blockquote.t-editor__quote > * {
4109
4181
  <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
4182
  </svg></button>
4111
4183
  </h3>
4112
- <div id="li3varAVF5QbVHdMh5NSX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4184
+ <div id="Vkf6A06oYMF9MsGVBVdkZ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4113
4185
  <pre style="
4114
4186
  --line-digits: 2;
4115
4187
  --line-number-start: -1;
@@ -4121,7 +4193,7 @@ blockquote.t-editor__quote > * {
4121
4193
  <span class="t-code__line" data-line-number="5"> -h, --help display help for command</span>
4122
4194
  <span class="t-code__line" data-line-number="6"></span>
4123
4195
  <span class="t-code__line" data-line-number="7">Commands:</span>
4124
- <span class="t-code__line" data-line-number="8"> bundle [options] [file|url] Bundle an OpenAPI specification by resolving all references and external dependencies</span>
4196
+ <span class="t-code__line" data-line-number="8"> bundle [options] [file|url] Bundle an OpenAPI document by resolving all references and external dependencies</span>
4125
4197
  <span class="t-code__line" data-line-number="9"> split [options] [file|url] Split your OpenAPI documents on small chunks</span>
4126
4198
  <span class="t-code__line" data-line-number="10"> join [options] &#x3C;files...> Merge multiple OpenAPI documents into a single unified document</span>
4127
4199
  <span class="t-code__line" data-line-number="11"> format [options] [file|url] Format an OpenAPI file</span>
@@ -4152,13 +4224,13 @@ blockquote.t-editor__quote > * {
4152
4224
  <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
4225
  </svg></button>
4154
4226
  </h4>
4155
- <div id="N5VHwHUWsuG7epCKtLZq4" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4227
+ <div id="U6h0MrjFh5wLDowg7pFFb" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4156
4228
  <pre style="
4157
4229
  --line-digits: 2;
4158
4230
  --line-number-start: -1;
4159
4231
  " 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 document bundle [options] [file|url]</span>
4160
4232
  <span class="t-code__line" data-line-number="1"></span>
4161
- <span class="t-code__line" data-line-number="2">Bundle an OpenAPI specification by resolving all references and external dependencies</span>
4233
+ <span class="t-code__line" data-line-number="2">Bundle an OpenAPI document by resolving all references and external dependencies</span>
4162
4234
  <span class="t-code__line" data-line-number="3"></span>
4163
4235
  <span class="t-code__line" data-line-number="4">Arguments:</span>
4164
4236
  <span class="t-code__line" data-line-number="5"> file|url Path to OpenAPI file or URL to bundle</span>
@@ -4186,7 +4258,7 @@ blockquote.t-editor__quote > * {
4186
4258
  <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
4259
  </svg></button>
4188
4260
  </h4>
4189
- <div id="RjiLc4KRbsUWYWqvRpkR1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4261
+ <div id="qlt3iGNOgflNuDLUY1lNO" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4190
4262
  <pre style="
4191
4263
  --line-digits: 2;
4192
4264
  --line-number-start: -1;
@@ -4217,7 +4289,7 @@ blockquote.t-editor__quote > * {
4217
4289
  <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
4290
  </svg></button>
4219
4291
  </h4>
4220
- <div id="9n1zZL1z8tSCP806YBWv9" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4292
+ <div id="BDdCeYgYFcKcp3958cj0U" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4221
4293
  <pre style="
4222
4294
  --line-digits: 2;
4223
4295
  --line-number-start: -1;
@@ -4249,7 +4321,7 @@ blockquote.t-editor__quote > * {
4249
4321
  <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
4322
  </svg></button>
4251
4323
  </h4>
4252
- <div id="VHoNlm3jfTT4gpqEKAfkD" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4324
+ <div id="FiWApWLuGWIYm4ymvrLd4" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4253
4325
  <pre style="
4254
4326
  --line-digits: 2;
4255
4327
  --line-number-start: -1;
@@ -4280,7 +4352,7 @@ blockquote.t-editor__quote > * {
4280
4352
  <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
4353
  </svg></button>
4282
4354
  </h4>
4283
- <div id="R3gwjXCLmAW1axMBHg9Vu" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4355
+ <div id="z2fZEGgKMMOzxx0yPBR4E" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4284
4356
  <pre style="
4285
4357
  --line-digits: 2;
4286
4358
  --line-number-start: -1;
@@ -4312,7 +4384,7 @@ blockquote.t-editor__quote > * {
4312
4384
  <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
4385
  </svg></button>
4314
4386
  </h4>
4315
- <div id="Xi5C2JhGLkHpC4RMv8RxZ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4387
+ <div id="3TAODxTx0k5ZFkCB6dLEm" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4316
4388
  <pre style="
4317
4389
  --line-digits: 2;
4318
4390
  --line-number-start: -1;
@@ -4343,7 +4415,7 @@ blockquote.t-editor__quote > * {
4343
4415
  <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
4416
  </svg></button>
4345
4417
  </h4>
4346
- <div id="LHPnVEiDChPyBtkI2146j" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4418
+ <div id="QyRaZnS2zZugsg5WmpQHz" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4347
4419
  <pre style="
4348
4420
  --line-digits: 2;
4349
4421
  --line-number-start: -1;
@@ -4376,7 +4448,7 @@ blockquote.t-editor__quote > * {
4376
4448
  <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
4449
  </svg></button>
4378
4450
  </h4>
4379
- <div id="7gnpOrnzLEIJUQEXYM800" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4451
+ <div id="EQek88eKj52pbSwOZdZKD" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4380
4452
  <pre style="
4381
4453
  --line-digits: 2;
4382
4454
  --line-number-start: -1;
@@ -4409,7 +4481,7 @@ blockquote.t-editor__quote > * {
4409
4481
  <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
4482
  </svg></button>
4411
4483
  </h4>
4412
- <div id="b7kxqg9FEsdBfgQnPyzf3" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4484
+ <div id="NQWT3dL3Tz6cwXsxOq5N8" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4413
4485
  <pre style="
4414
4486
  --line-digits: 2;
4415
4487
  --line-number-start: -1;
@@ -4440,7 +4512,7 @@ blockquote.t-editor__quote > * {
4440
4512
  <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
4513
  </svg></button>
4442
4514
  </h4>
4443
- <div id="NBpIBWM1XzxYUSElP1htv" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4515
+ <div id="3XmGFBloDQ0KShRjLKa4O" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4444
4516
  <pre style="
4445
4517
  --line-digits: 2;
4446
4518
  --line-number-start: -1;
@@ -4470,7 +4542,7 @@ blockquote.t-editor__quote > * {
4470
4542
  <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
4543
  </svg></button>
4472
4544
  </h4>
4473
- <div id="iNfYErRocEZapVkw7WAi9" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4545
+ <div id="o9p1k2R4GfF9jI6Wu7mOu" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4474
4546
  <pre style="
4475
4547
  --line-digits: 2;
4476
4548
  --line-number-start: -1;
@@ -4499,7 +4571,7 @@ blockquote.t-editor__quote > * {
4499
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>
4500
4572
  </svg></button>
4501
4573
  </h4>
4502
- <div id="l1FljB7IAcCyeC2Xh5S3K" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4574
+ <div id="jyX5AXFSXtnY8RcCrtEbI" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4503
4575
  <pre style="
4504
4576
  --line-digits: 2;
4505
4577
  --line-number-start: -1;
@@ -4530,7 +4602,7 @@ blockquote.t-editor__quote > * {
4530
4602
  <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
4603
  </svg></button>
4532
4604
  </h4>
4533
- <div id="OV82yeJlMnSFfbkFxfp1A" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4605
+ <div id="L0JgDgAaeuwtunCQEYOYR" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4534
4606
  <pre style="
4535
4607
  --line-digits: 2;
4536
4608
  --line-number-start: -1;
@@ -4561,7 +4633,7 @@ blockquote.t-editor__quote > * {
4561
4633
  <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
4634
  </svg></button>
4563
4635
  </h3>
4564
- <div id="kmwesFemL69FsDC9BQ1tM" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4636
+ <div id="8yjM2lSWgFZLinFaUdv8l" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4565
4637
  <pre style="
4566
4638
  --line-digits: 2;
4567
4639
  --line-number-start: -1;
@@ -4597,7 +4669,7 @@ blockquote.t-editor__quote > * {
4597
4669
  <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
4670
  </svg></button>
4599
4671
  </h4>
4600
- <div id="bs50xCqCIUUxf5301EDaW" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4672
+ <div id="RFptBiJzczs8cdjUYuMV6" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4601
4673
  <pre style="
4602
4674
  --line-digits: 2;
4603
4675
  --line-number-start: -1;
@@ -4626,7 +4698,7 @@ blockquote.t-editor__quote > * {
4626
4698
  <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
4699
  </svg></button>
4628
4700
  </h4>
4629
- <div id="zNGILMqeU4KuKGorYuYpO" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4701
+ <div id="n9bKGKHGWUQf9AIKNYqD2" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4630
4702
  <pre style="
4631
4703
  --line-digits: 2;
4632
4704
  --line-number-start: -1;
@@ -4656,7 +4728,7 @@ blockquote.t-editor__quote > * {
4656
4728
  <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
4729
  </svg></button>
4658
4730
  </h4>
4659
- <div id="6UfpWbWPyyYVK2oRTB0dE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4731
+ <div id="vdRoiwLa6fjiwtb6vQKEe" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4660
4732
  <pre style="
4661
4733
  --line-digits: 2;
4662
4734
  --line-number-start: -1;
@@ -4685,7 +4757,7 @@ blockquote.t-editor__quote > * {
4685
4757
  <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
4758
  </svg></button>
4687
4759
  </h4>
4688
- <div id="8IXSNkmh71wAk1qMff6re" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4760
+ <div id="VIXMO9qf1X2e24MeTmIwc" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4689
4761
  <pre style="
4690
4762
  --line-digits: 2;
4691
4763
  --line-number-start: -1;
@@ -4720,7 +4792,7 @@ blockquote.t-editor__quote > * {
4720
4792
  <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
4793
  </svg></button>
4722
4794
  </h4>
4723
- <div id="OHm9bvPH4wg0eOXNTVWcS" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4795
+ <div id="RSHQ5KjYTdjvftYRZUGZq" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4724
4796
  <pre style="
4725
4797
  --line-digits: 2;
4726
4798
  --line-number-start: -1;
@@ -4751,7 +4823,7 @@ blockquote.t-editor__quote > * {
4751
4823
  <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
4824
  </svg></button>
4753
4825
  </h4>
4754
- <div id="4sEmik7upbVKYGeVHGpx4" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4826
+ <div id="QwrTfZnh43GQqUznjf9GQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4755
4827
  <pre style="
4756
4828
  --line-digits: 2;
4757
4829
  --line-number-start: -1;
@@ -4781,7 +4853,7 @@ blockquote.t-editor__quote > * {
4781
4853
  <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
4854
  </svg></button>
4783
4855
  </h3>
4784
- <div id="MaW7vnYRY7AfKPLufk9BE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4856
+ <div id="4KHKSkdh3dMog0xm8uj5g" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4785
4857
  <pre style="
4786
4858
  --line-digits: 2;
4787
4859
  --line-number-start: -1;
@@ -4816,7 +4888,7 @@ blockquote.t-editor__quote > * {
4816
4888
  <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
4889
  </svg></button>
4818
4890
  </h4>
4819
- <div id="GEhHBvbtuqHGWZDYGMfcw" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4891
+ <div id="s0ldQ9mmbU6GzcXt3LnKi" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4820
4892
  <pre style="
4821
4893
  --line-digits: 2;
4822
4894
  --line-number-start: -1;
@@ -4856,7 +4928,7 @@ blockquote.t-editor__quote > * {
4856
4928
  <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
4929
  </svg></button>
4858
4930
  </h4>
4859
- <div id="gvOnpJaaqAg2zX8OgoOgn" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4931
+ <div id="tJkznyjkY2bnh38YtsJEh" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4860
4932
  <pre style="
4861
4933
  --line-digits: 2;
4862
4934
  --line-number-start: -1;
@@ -4889,7 +4961,7 @@ blockquote.t-editor__quote > * {
4889
4961
  <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
4962
  </svg></button>
4891
4963
  </h4>
4892
- <div id="iwdrvHACYVlwltVxaifkX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4964
+ <div id="LNzP0phKDVlfLm8HDgmsg" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4893
4965
  <pre style="
4894
4966
  --line-digits: 2;
4895
4967
  --line-number-start: -1;
@@ -4920,7 +4992,7 @@ blockquote.t-editor__quote > * {
4920
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>
4921
4993
  </svg></button>
4922
4994
  </h4>
4923
- <div id="CNIgTmiQMgsLOK7sa4Pey" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4995
+ <div id="bVqbel8njyiNd9A2AMCTs" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4924
4996
  <pre style="
4925
4997
  --line-digits: 2;
4926
4998
  --line-number-start: -1;
@@ -4948,7 +5020,7 @@ blockquote.t-editor__quote > * {
4948
5020
  <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
5021
  </svg></button>
4950
5022
  </h4>
4951
- <div id="rj9PacRMfXbUcpitRwOYS" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5023
+ <div id="5dCH8eao7khRIWuHJBFCt" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4952
5024
  <pre style="
4953
5025
  --line-digits: 2;
4954
5026
  --line-number-start: -1;
@@ -4982,7 +5054,7 @@ blockquote.t-editor__quote > * {
4982
5054
  <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
5055
  </svg></button>
4984
5056
  </h3>
4985
- <div id="pymRwOUruW2agxy8B9d7v" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5057
+ <div id="6JKbP3JvauTrzplQTukwm" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
4986
5058
  <pre style="
4987
5059
  --line-digits: 2;
4988
5060
  --line-number-start: -1;
@@ -5014,7 +5086,7 @@ blockquote.t-editor__quote > * {
5014
5086
  <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
5087
  </svg></button>
5016
5088
  </h4>
5017
- <div id="Noi9iMi376RHq84RC4s0J" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5089
+ <div id="VcOTT5wmkmw7aGb1ExtTv" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5018
5090
  <pre style="
5019
5091
  --line-digits: 2;
5020
5092
  --line-number-start: -1;
@@ -5041,7 +5113,7 @@ blockquote.t-editor__quote > * {
5041
5113
  <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
5114
  </svg></button>
5043
5115
  </h4>
5044
- <div id="7Xx0hBBlMjh8VImOc15So" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5116
+ <div id="UxkUT3UdGSlTwQqv37iBF" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5045
5117
  <pre style="
5046
5118
  --line-digits: 2;
5047
5119
  --line-number-start: -1;
@@ -5069,7 +5141,7 @@ blockquote.t-editor__quote > * {
5069
5141
  <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
5142
  </svg></button>
5071
5143
  </h3>
5072
- <div id="VUc0kPfgXNDwMPZypF4tA" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5144
+ <div id="3PkI0uhQSKcKe1Jr05MlG" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5073
5145
  <pre style="
5074
5146
  --line-digits: 2;
5075
5147
  --line-number-start: -1;
@@ -5104,7 +5176,7 @@ blockquote.t-editor__quote > * {
5104
5176
  <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
5177
  </svg></button>
5106
5178
  </h4>
5107
- <div id="xzoqFPgnHov9kqTSOGLqA" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5179
+ <div id="Iz9gEQOP4NMbgRSWucfwL" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5108
5180
  <pre style="
5109
5181
  --line-digits: 2;
5110
5182
  --line-number-start: -1;
@@ -5132,7 +5204,7 @@ blockquote.t-editor__quote > * {
5132
5204
  <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
5205
  </svg></button>
5134
5206
  </h4>
5135
- <div id="MX80PGx54hCZyX45XHeTV" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5207
+ <div id="WSc0cb3HZObi3moIVEDZr" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5136
5208
  <pre style="
5137
5209
  --line-digits: 2;
5138
5210
  --line-number-start: -1;
@@ -5162,7 +5234,7 @@ blockquote.t-editor__quote > * {
5162
5234
  <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
5235
  </svg></button>
5164
5236
  </h4>
5165
- <div id="nyiXUFNHS7ED5siosOSv5" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5237
+ <div id="uBePV8tfjuw8jBA4rguxm" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5166
5238
  <pre style="
5167
5239
  --line-digits: 2;
5168
5240
  --line-number-start: -1;
@@ -5193,7 +5265,7 @@ blockquote.t-editor__quote > * {
5193
5265
  <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
5266
  </svg></button>
5195
5267
  </h4>
5196
- <div id="k7ANf6i3NP0CQfaKIJToQ" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5268
+ <div id="JL4H3T00xzpuvMhJ7XwL4" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5197
5269
  <pre style="
5198
5270
  --line-digits: 2;
5199
5271
  --line-number-start: -1;
@@ -5222,7 +5294,7 @@ blockquote.t-editor__quote > * {
5222
5294
  <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
5295
  </svg></button>
5224
5296
  </h4>
5225
- <div id="ktAKhZ02yyHjgsx4RChI1" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5297
+ <div id="mGuzRxuCxBQKm9DPzq0Iy" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5226
5298
  <pre style="
5227
5299
  --line-digits: 2;
5228
5300
  --line-number-start: -1;
@@ -5252,7 +5324,7 @@ blockquote.t-editor__quote > * {
5252
5324
  <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
5325
  </svg></button>
5254
5326
  </h3>
5255
- <div id="mNhB0UmpnNJN5nlaxcAY0" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5327
+ <div id="sFMkcZdCmoBCIqVzYHqkX" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5256
5328
  <pre style="
5257
5329
  --line-digits: 2;
5258
5330
  --line-number-start: -1;
@@ -5261,14 +5333,15 @@ blockquote.t-editor__quote > * {
5261
5333
  <span class="t-code__line" data-line-number="2">Manage your Scalar schemas</span>
5262
5334
  <span class="t-code__line" data-line-number="3"></span>
5263
5335
  <span class="t-code__line" data-line-number="4">Options:</span>
5264
- <span class="t-code__line" data-line-number="5"> -h, --help display help for command</span>
5336
+ <span class="t-code__line" data-line-number="5"> -h, --help display help for command</span>
5265
5337
  <span class="t-code__line" data-line-number="6"></span>
5266
5338
  <span class="t-code__line" data-line-number="7">Commands:</span>
5267
- <span class="t-code__line" data-line-number="8"> delete [options] Delete a schema.</span>
5268
- <span class="t-code__line" data-line-number="9"> update [options] Update schema metadata.</span>
5269
- <span class="t-code__line" data-line-number="10"> list [options] List all schemas for a team namespace</span>
5270
- <span class="t-code__line" data-line-number="11"> publish [options] [file] Publish a shared schema to the Scalar registry</span>
5271
- <span class="t-code__line" data-line-number="12"> help [command] display help for command</span>
5339
+ <span class="t-code__line" data-line-number="8"> delete [options] Delete a schema.</span>
5340
+ <span class="t-code__line" data-line-number="9"> update [options] Update schema metadata.</span>
5341
+ <span class="t-code__line" data-line-number="10"> list [options] List all schemas for a team namespace</span>
5342
+ <span class="t-code__line" data-line-number="11"> get [options] [namespace] [slug] Get a schema document version from the Scalar registry</span>
5343
+ <span class="t-code__line" data-line-number="12"> publish [options] [file] Publish a shared schema to the Scalar registry</span>
5344
+ <span class="t-code__line" data-line-number="13"> help [command] display help for command</span>
5272
5345
  </code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
5273
5346
  <svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
5274
5347
  <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 +5359,7 @@ blockquote.t-editor__quote > * {
5286
5359
  <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
5360
  </svg></button>
5288
5361
  </h4>
5289
- <div id="AFqn3ihgKTZVLDicfzSv3" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5362
+ <div id="xre4HybOq0MnSr9oIQUjw" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5290
5363
  <pre style="
5291
5364
  --line-digits: 2;
5292
5365
  --line-number-start: -1;
@@ -5315,7 +5388,7 @@ blockquote.t-editor__quote > * {
5315
5388
  <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
5389
  </svg></button>
5317
5390
  </h4>
5318
- <div id="kdN27vcsRkLHOG13gFUcO" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5391
+ <div id="9gZhQEfy1bHOILi8mgrPg" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5319
5392
  <pre style="
5320
5393
  --line-digits: 2;
5321
5394
  --line-number-start: -1;
@@ -5347,7 +5420,7 @@ blockquote.t-editor__quote > * {
5347
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>
5348
5421
  </svg></button>
5349
5422
  </h4>
5350
- <div id="DZVHJD2rlvyTXB3K8ylV6" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5423
+ <div id="wvso3FKMiY6wEm1UfZSdn" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5351
5424
  <pre style="
5352
5425
  --line-digits: 2;
5353
5426
  --line-number-start: -1;
@@ -5366,6 +5439,40 @@ blockquote.t-editor__quote > * {
5366
5439
  <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
5440
  </svg></button>
5368
5441
  </div>
5442
+ <h4 id="get-1" class="scroll-pad interaction-observer-heading t-editor__heading" data-level="4" data-scalar-type="heading">
5443
+ get
5444
+ <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">
5445
+ <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>
5446
+ </svg>
5447
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" aria-hidden="true" class="icon">
5448
+ <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>
5449
+ </svg></button>
5450
+ </h4>
5451
+ <div id="RzzAlId20lECnJ7GMpDxE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5452
+ <pre style="
5453
+ --line-digits: 2;
5454
+ --line-number-start: -1;
5455
+ " 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>
5456
+ <span class="t-code__line" data-line-number="1"></span>
5457
+ <span class="t-code__line" data-line-number="2">Get a schema document version from the Scalar registry</span>
5458
+ <span class="t-code__line" data-line-number="3"></span>
5459
+ <span class="t-code__line" data-line-number="4">Arguments:</span>
5460
+ <span class="t-code__line" data-line-number="5"> namespace Team namespace</span>
5461
+ <span class="t-code__line" data-line-number="6"> slug Schema slug</span>
5462
+ <span class="t-code__line" data-line-number="7"></span>
5463
+ <span class="t-code__line" data-line-number="8">Options:</span>
5464
+ <span class="t-code__line" data-line-number="9"> --version &#x3C;version> Schema version (defaults to latest)</span>
5465
+ <span class="t-code__line" data-line-number="10"> --format &#x3C;format> Output format (json or yaml) (default: "json")</span>
5466
+ <span class="t-code__line" data-line-number="11"> -o, --output &#x3C;file> Output file (defaults to stdout)</span>
5467
+ <span class="t-code__line" data-line-number="12"> -h, --help display help for command</span>
5468
+ </code></pre><button class="language-button t-editor__language-picker" data-scalar-type="code-block-copy" type="button">plaintext
5469
+ <svg class="lang-copy" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
5470
+ <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>
5471
+ </svg>
5472
+ <svg class="lang-success" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
5473
+ <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>
5474
+ </svg></button>
5475
+ </div>
5369
5476
  <h4 id="publish-2" class="scroll-pad interaction-observer-heading t-editor__heading" data-level="4" data-scalar-type="heading">
5370
5477
  publish
5371
5478
  <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 +5482,7 @@ blockquote.t-editor__quote > * {
5375
5482
  <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
5483
  </svg></button>
5377
5484
  </h4>
5378
- <div id="lrvT4PCWqIRLfq0jLU3g0" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5485
+ <div id="nUhTqH7viKB6HNU6snV0n" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5379
5486
  <pre style="
5380
5487
  --line-digits: 2;
5381
5488
  --line-number-start: -1;
@@ -5415,7 +5522,7 @@ blockquote.t-editor__quote > * {
5415
5522
  </svg></button>
5416
5523
  </h2>
5417
5524
  <p class="t-editor__paragraph">To validate your OpenAPI file in GitHub Actions, add this workflow:</p>
5418
- <div id="zyEQhHQDdXoG6h06yrM7S" class="t-editor__code-container" data-lang="yml" style="position: relative;">
5525
+ <div id="I8CPnKV9xWUzruwQKapeC" class="t-editor__code-container" data-lang="yml" style="position: relative;">
5419
5526
  <pre style="
5420
5527
  --line-digits: 2;
5421
5528
  --line-number-start: -1;
@@ -5462,7 +5569,7 @@ blockquote.t-editor__quote > * {
5462
5569
  </svg></button>
5463
5570
  </h2>
5464
5571
  <p class="t-editor__paragraph">Set up the development environment:</p>
5465
- <div id="vjXGmMyBM9WyMtGcfiKMv" class="t-editor__code-container" data-lang="bash" style="position: relative;">
5572
+ <div id="2bxgPdJnsU2t98SkROfUB" class="t-editor__code-container" data-lang="bash" style="position: relative;">
5466
5573
  <pre style="
5467
5574
  --line-digits: 2;
5468
5575
  --line-number-start: -1;
@@ -5477,7 +5584,7 @@ blockquote.t-editor__quote > * {
5477
5584
  </svg></button>
5478
5585
  </div>
5479
5586
  <p class="t-editor__paragraph">To symlink the package and use it globally on your machine:</p>
5480
- <div id="WCPw0ZcL2IrTHOT7vhmSj" class="t-editor__code-container" data-lang="bash" style="position: relative;">
5587
+ <div id="tXxad7NBPbH9a6kwNuG7N" class="t-editor__code-container" data-lang="bash" style="position: relative;">
5481
5588
  <pre style="
5482
5589
  --line-digits: 2;
5483
5590
  --line-number-start: -1;