@scalar/cli 2.0.0 → 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 +2 -2
  2. package/docs.html +145 -83
  3. package/index.js +412 -216
  4. package/package.json +13 -13
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;
@@ -2912,7 +2919,7 @@ pre.t-code--numbered {
2912
2919
  }
2913
2920
 
2914
2921
  /* ../../packages/css/src/guides/text-extensions/image.css */
2915
- figure.t-editor__image {
2922
+ .t-editor__image:not(img) {
2916
2923
  display: flex;
2917
2924
  width: fit-content;
2918
2925
  margin: auto;
@@ -2935,7 +2942,7 @@ figure.t-editor__image {
2935
2942
  img.t-editor__image {
2936
2943
  max-width: 100%;
2937
2944
  }
2938
- figure.t-editor__image.custom-image-size-full,
2945
+ .t-editor__image.custom-image-size-full:not(img),
2939
2946
  figure.t-editor__image.custom-image-size-full img {
2940
2947
  width: 100%;
2941
2948
  }
@@ -2949,6 +2956,38 @@ figure.t-editor__image.custom-image-size-full img {
2949
2956
  width: 100%;
2950
2957
  aspect-ratio: 16 / 9;
2951
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
+ }
2952
2991
  .t-editor__embed figcaption {
2953
2992
  display: block;
2954
2993
  text-align: center;
@@ -2960,38 +2999,61 @@ figure.t-editor__image.custom-image-size-full img {
2960
2999
 
2961
3000
  /* ../../packages/css/src/guides/text-extensions/file.css */
2962
3001
  .t-editor__file .file {
2963
- border-radius: var(--scalar-radius);
2964
- font-family: var(--scalar-font-code);
2965
- font-size: var(--scalar-paragraph);
2966
- background: var(--scalar-background-2);
2967
- padding: 11px 16px 11px 9px;
2968
- overflow: auto;
2969
3002
  display: flex;
2970
- justify-content: space-between;
2971
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;
2972
3011
  cursor: pointer;
2973
3012
  }
2974
3013
  .t-editor__file .file:hover {
2975
- opacity: 0.95;
2976
- cursor: pointer;
3014
+ background: var(--scalar-background-3);
2977
3015
  }
2978
- .t-editor__file .file i {
2979
- font-size: 8px;
2980
- 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;
2981
3025
  height: 30px;
2982
- line-height: 30px;
3026
+ padding: 0 6px;
2983
3027
  border-radius: var(--scalar-radius);
2984
3028
  background: var(--scalar-background-1);
2985
- font-weight: var(--scalar-bold);
3029
+ box-shadow: 0 0 0 var(--scalar-border-width) var(--scalar-border-color);
2986
3030
  color: var(--scalar-color-accent);
2987
- box-shadow: 0 -2px 0 var(--scalar-border-color);
2988
- display: inline-block;
2989
- text-align: center;
3031
+ font-family: var(--scalar-font-code);
3032
+ font-size: var(--scalar-micro);
2990
3033
  font-style: normal;
3034
+ font-weight: var(--scalar-bold);
3035
+ line-height: 30px;
3036
+ text-align: center;
2991
3037
  }
2992
- .t-editor__file .file span {
3038
+ .t-editor__file .file-name {
3039
+ overflow: hidden;
2993
3040
  font-size: var(--scalar-paragraph);
2994
- 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);
2995
3057
  }
2996
3058
 
2997
3059
  /* ../../packages/css/src/guides/text-extensions/card.css */
@@ -3790,7 +3852,7 @@ blockquote.t-editor__quote > * {
3790
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>
3791
3853
  </svg></button>
3792
3854
  </h2>
3793
- <div id="XiR9r7Ce04RQc0lU1ZZPa" 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;">
3794
3856
  <pre style="
3795
3857
  --line-digits: 2;
3796
3858
  --line-number-start: -1;
@@ -3813,7 +3875,7 @@ blockquote.t-editor__quote > * {
3813
3875
  </svg></button>
3814
3876
  </h2>
3815
3877
  <p class="t-editor__paragraph">If you really want to become friends you should install the CLI:</p>
3816
- <div id="7YfXtxllHZ5SbWSgGJVUB" 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;">
3817
3879
  <pre style="
3818
3880
  --line-digits: 2;
3819
3881
  --line-number-start: -1;
@@ -3837,7 +3899,7 @@ blockquote.t-editor__quote > * {
3837
3899
  </svg></button>
3838
3900
  </h3>
3839
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>
3840
- <div id="UreXxnLeBcrFl9e0qnwCt" 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;">
3841
3903
  <pre style="
3842
3904
  --line-digits: 2;
3843
3905
  --line-number-start: -1;
@@ -3851,7 +3913,7 @@ blockquote.t-editor__quote > * {
3851
3913
  </svg></button>
3852
3914
  </div>
3853
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>
3854
- <div id="kc3wQMjdTmNMWcIktZ7pD" 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;">
3855
3917
  <pre style="
3856
3918
  --line-digits: 2;
3857
3919
  --line-number-start: -1;
@@ -3877,7 +3939,7 @@ blockquote.t-editor__quote > * {
3877
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>
3878
3940
  </svg></button>
3879
3941
  </h2>
3880
- <div id="lm0lJDi14kXymItLZAKDz" 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;">
3881
3943
  <pre style="
3882
3944
  --line-digits: 2;
3883
3945
  --line-number-start: -1;
@@ -3917,7 +3979,7 @@ blockquote.t-editor__quote > * {
3917
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>
3918
3980
  </svg></button>
3919
3981
  </h3>
3920
- <div id="tK6kRHuHWBxk0DLuMWdNy" 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;">
3921
3983
  <pre style="
3922
3984
  --line-digits: 2;
3923
3985
  --line-number-start: -1;
@@ -3947,7 +4009,7 @@ blockquote.t-editor__quote > * {
3947
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>
3948
4010
  </svg></button>
3949
4011
  </h4>
3950
- <div id="NZB4jehOUmYhXsDUruVkE" 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;">
3951
4013
  <pre style="
3952
4014
  --line-digits: 2;
3953
4015
  --line-number-start: -1;
@@ -3975,7 +4037,7 @@ blockquote.t-editor__quote > * {
3975
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>
3976
4038
  </svg></button>
3977
4039
  </h3>
3978
- <div id="tzj4bepKc1OFOgSbjuvtQ" 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;">
3979
4041
  <pre style="
3980
4042
  --line-digits: 2;
3981
4043
  --line-number-start: -1;
@@ -4002,7 +4064,7 @@ blockquote.t-editor__quote > * {
4002
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>
4003
4065
  </svg></button>
4004
4066
  </h3>
4005
- <div id="ewUueiCM5QuBVWugoEd9Q" 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;">
4006
4068
  <pre style="
4007
4069
  --line-digits: 2;
4008
4070
  --line-number-start: -1;
@@ -4035,7 +4097,7 @@ blockquote.t-editor__quote > * {
4035
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>
4036
4098
  </svg></button>
4037
4099
  </h4>
4038
- <div id="wlR2AQYzsS21frknCtCJo" 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;">
4039
4101
  <pre style="
4040
4102
  --line-digits: 2;
4041
4103
  --line-number-start: -1;
@@ -4065,7 +4127,7 @@ blockquote.t-editor__quote > * {
4065
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>
4066
4128
  </svg></button>
4067
4129
  </h4>
4068
- <div id="ls6HK2lpGnqelOHDloFWF" 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;">
4069
4131
  <pre style="
4070
4132
  --line-digits: 2;
4071
4133
  --line-number-start: -1;
@@ -4092,7 +4154,7 @@ blockquote.t-editor__quote > * {
4092
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>
4093
4155
  </svg></button>
4094
4156
  </h4>
4095
- <div id="Bhq4e6ZKxIkDU25IHXFhQ" 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;">
4096
4158
  <pre style="
4097
4159
  --line-digits: 2;
4098
4160
  --line-number-start: -1;
@@ -4119,7 +4181,7 @@ blockquote.t-editor__quote > * {
4119
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>
4120
4182
  </svg></button>
4121
4183
  </h3>
4122
- <div id="Lu7VzREfQGWvrT2G4U7po" 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;">
4123
4185
  <pre style="
4124
4186
  --line-digits: 2;
4125
4187
  --line-number-start: -1;
@@ -4131,7 +4193,7 @@ blockquote.t-editor__quote > * {
4131
4193
  <span class="t-code__line" data-line-number="5"> -h, --help display help for command</span>
4132
4194
  <span class="t-code__line" data-line-number="6"></span>
4133
4195
  <span class="t-code__line" data-line-number="7">Commands:</span>
4134
- <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>
4135
4197
  <span class="t-code__line" data-line-number="9"> split [options] [file|url] Split your OpenAPI documents on small chunks</span>
4136
4198
  <span class="t-code__line" data-line-number="10"> join [options] &#x3C;files...> Merge multiple OpenAPI documents into a single unified document</span>
4137
4199
  <span class="t-code__line" data-line-number="11"> format [options] [file|url] Format an OpenAPI file</span>
@@ -4162,13 +4224,13 @@ blockquote.t-editor__quote > * {
4162
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>
4163
4225
  </svg></button>
4164
4226
  </h4>
4165
- <div id="cFcmGriyhenzDDBc8hbfE" 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;">
4166
4228
  <pre style="
4167
4229
  --line-digits: 2;
4168
4230
  --line-number-start: -1;
4169
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>
4170
4232
  <span class="t-code__line" data-line-number="1"></span>
4171
- <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>
4172
4234
  <span class="t-code__line" data-line-number="3"></span>
4173
4235
  <span class="t-code__line" data-line-number="4">Arguments:</span>
4174
4236
  <span class="t-code__line" data-line-number="5"> file|url Path to OpenAPI file or URL to bundle</span>
@@ -4196,7 +4258,7 @@ blockquote.t-editor__quote > * {
4196
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>
4197
4259
  </svg></button>
4198
4260
  </h4>
4199
- <div id="zsGjnMOtBdEuCgnfinyKy" 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;">
4200
4262
  <pre style="
4201
4263
  --line-digits: 2;
4202
4264
  --line-number-start: -1;
@@ -4227,7 +4289,7 @@ blockquote.t-editor__quote > * {
4227
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>
4228
4290
  </svg></button>
4229
4291
  </h4>
4230
- <div id="XDHhm6OVMOqvrdaO3aCDV" 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;">
4231
4293
  <pre style="
4232
4294
  --line-digits: 2;
4233
4295
  --line-number-start: -1;
@@ -4259,7 +4321,7 @@ blockquote.t-editor__quote > * {
4259
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>
4260
4322
  </svg></button>
4261
4323
  </h4>
4262
- <div id="wlAAehlaNxSE33kREPiuw" 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;">
4263
4325
  <pre style="
4264
4326
  --line-digits: 2;
4265
4327
  --line-number-start: -1;
@@ -4290,7 +4352,7 @@ blockquote.t-editor__quote > * {
4290
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>
4291
4353
  </svg></button>
4292
4354
  </h4>
4293
- <div id="GMPv0EvcRCWI68RXsYs9O" 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;">
4294
4356
  <pre style="
4295
4357
  --line-digits: 2;
4296
4358
  --line-number-start: -1;
@@ -4322,7 +4384,7 @@ blockquote.t-editor__quote > * {
4322
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>
4323
4385
  </svg></button>
4324
4386
  </h4>
4325
- <div id="paGxncnAulIDELHZqKCkb" 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;">
4326
4388
  <pre style="
4327
4389
  --line-digits: 2;
4328
4390
  --line-number-start: -1;
@@ -4353,7 +4415,7 @@ blockquote.t-editor__quote > * {
4353
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>
4354
4416
  </svg></button>
4355
4417
  </h4>
4356
- <div id="tfYA3LFW4iCbgKnomNEcW" 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;">
4357
4419
  <pre style="
4358
4420
  --line-digits: 2;
4359
4421
  --line-number-start: -1;
@@ -4386,7 +4448,7 @@ blockquote.t-editor__quote > * {
4386
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>
4387
4449
  </svg></button>
4388
4450
  </h4>
4389
- <div id="TVFYZLlPmNg921Rc2kBtM" 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;">
4390
4452
  <pre style="
4391
4453
  --line-digits: 2;
4392
4454
  --line-number-start: -1;
@@ -4419,7 +4481,7 @@ blockquote.t-editor__quote > * {
4419
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>
4420
4482
  </svg></button>
4421
4483
  </h4>
4422
- <div id="ttXWtbbKxC955cMDwv5tp" 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;">
4423
4485
  <pre style="
4424
4486
  --line-digits: 2;
4425
4487
  --line-number-start: -1;
@@ -4450,7 +4512,7 @@ blockquote.t-editor__quote > * {
4450
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>
4451
4513
  </svg></button>
4452
4514
  </h4>
4453
- <div id="EBj986Ld28NAoGujvO8tG" 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;">
4454
4516
  <pre style="
4455
4517
  --line-digits: 2;
4456
4518
  --line-number-start: -1;
@@ -4480,7 +4542,7 @@ blockquote.t-editor__quote > * {
4480
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>
4481
4543
  </svg></button>
4482
4544
  </h4>
4483
- <div id="hd2WRwJ7AzVWx0jMWHE0w" 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;">
4484
4546
  <pre style="
4485
4547
  --line-digits: 2;
4486
4548
  --line-number-start: -1;
@@ -4509,7 +4571,7 @@ blockquote.t-editor__quote > * {
4509
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>
4510
4572
  </svg></button>
4511
4573
  </h4>
4512
- <div id="y3oBrUch02GqvfC2rHsMU" 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;">
4513
4575
  <pre style="
4514
4576
  --line-digits: 2;
4515
4577
  --line-number-start: -1;
@@ -4540,7 +4602,7 @@ blockquote.t-editor__quote > * {
4540
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>
4541
4603
  </svg></button>
4542
4604
  </h4>
4543
- <div id="OsLz9WvowRVQSrhvlGL3E" 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;">
4544
4606
  <pre style="
4545
4607
  --line-digits: 2;
4546
4608
  --line-number-start: -1;
@@ -4571,7 +4633,7 @@ blockquote.t-editor__quote > * {
4571
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>
4572
4634
  </svg></button>
4573
4635
  </h3>
4574
- <div id="NoNxpMI727eAAPTONlgeB" 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;">
4575
4637
  <pre style="
4576
4638
  --line-digits: 2;
4577
4639
  --line-number-start: -1;
@@ -4607,7 +4669,7 @@ blockquote.t-editor__quote > * {
4607
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>
4608
4670
  </svg></button>
4609
4671
  </h4>
4610
- <div id="RSFnicSKjRgH8aiFFng52" 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;">
4611
4673
  <pre style="
4612
4674
  --line-digits: 2;
4613
4675
  --line-number-start: -1;
@@ -4636,7 +4698,7 @@ blockquote.t-editor__quote > * {
4636
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>
4637
4699
  </svg></button>
4638
4700
  </h4>
4639
- <div id="pmSuX32Yre5tdydXO1Rwl" 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;">
4640
4702
  <pre style="
4641
4703
  --line-digits: 2;
4642
4704
  --line-number-start: -1;
@@ -4666,7 +4728,7 @@ blockquote.t-editor__quote > * {
4666
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>
4667
4729
  </svg></button>
4668
4730
  </h4>
4669
- <div id="zJ0CDlCQANTrxDHXsh1SQ" 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;">
4670
4732
  <pre style="
4671
4733
  --line-digits: 2;
4672
4734
  --line-number-start: -1;
@@ -4695,7 +4757,7 @@ blockquote.t-editor__quote > * {
4695
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>
4696
4758
  </svg></button>
4697
4759
  </h4>
4698
- <div id="SzkI7QfPE0O5HU9uZyBsE" 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;">
4699
4761
  <pre style="
4700
4762
  --line-digits: 2;
4701
4763
  --line-number-start: -1;
@@ -4730,7 +4792,7 @@ blockquote.t-editor__quote > * {
4730
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>
4731
4793
  </svg></button>
4732
4794
  </h4>
4733
- <div id="KMoNIlacTsJ0wfrSJteKV" 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;">
4734
4796
  <pre style="
4735
4797
  --line-digits: 2;
4736
4798
  --line-number-start: -1;
@@ -4761,7 +4823,7 @@ blockquote.t-editor__quote > * {
4761
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>
4762
4824
  </svg></button>
4763
4825
  </h4>
4764
- <div id="G55ny4esDc3IPRraFDYgf" 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;">
4765
4827
  <pre style="
4766
4828
  --line-digits: 2;
4767
4829
  --line-number-start: -1;
@@ -4791,7 +4853,7 @@ blockquote.t-editor__quote > * {
4791
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>
4792
4854
  </svg></button>
4793
4855
  </h3>
4794
- <div id="Sob5ngi9kaZuyS8mFxuBI" 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;">
4795
4857
  <pre style="
4796
4858
  --line-digits: 2;
4797
4859
  --line-number-start: -1;
@@ -4826,7 +4888,7 @@ blockquote.t-editor__quote > * {
4826
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>
4827
4889
  </svg></button>
4828
4890
  </h4>
4829
- <div id="nVAoK9ZcdeVFTLfTpyjvD" 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;">
4830
4892
  <pre style="
4831
4893
  --line-digits: 2;
4832
4894
  --line-number-start: -1;
@@ -4866,7 +4928,7 @@ blockquote.t-editor__quote > * {
4866
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>
4867
4929
  </svg></button>
4868
4930
  </h4>
4869
- <div id="LQ31CTtHQs1GVifs85Sqa" 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;">
4870
4932
  <pre style="
4871
4933
  --line-digits: 2;
4872
4934
  --line-number-start: -1;
@@ -4899,7 +4961,7 @@ blockquote.t-editor__quote > * {
4899
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>
4900
4962
  </svg></button>
4901
4963
  </h4>
4902
- <div id="qPWBdBV0ykQrHAlItRwz8" 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;">
4903
4965
  <pre style="
4904
4966
  --line-digits: 2;
4905
4967
  --line-number-start: -1;
@@ -4930,7 +4992,7 @@ blockquote.t-editor__quote > * {
4930
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>
4931
4993
  </svg></button>
4932
4994
  </h4>
4933
- <div id="mJtEJraaW0ruIeYbRRt1p" 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;">
4934
4996
  <pre style="
4935
4997
  --line-digits: 2;
4936
4998
  --line-number-start: -1;
@@ -4958,7 +5020,7 @@ blockquote.t-editor__quote > * {
4958
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>
4959
5021
  </svg></button>
4960
5022
  </h4>
4961
- <div id="4QAKEHPxFTNMB8swxFUq7" 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;">
4962
5024
  <pre style="
4963
5025
  --line-digits: 2;
4964
5026
  --line-number-start: -1;
@@ -4992,7 +5054,7 @@ blockquote.t-editor__quote > * {
4992
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>
4993
5055
  </svg></button>
4994
5056
  </h3>
4995
- <div id="Tn6JsDISoBjKpwP29SABK" 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;">
4996
5058
  <pre style="
4997
5059
  --line-digits: 2;
4998
5060
  --line-number-start: -1;
@@ -5024,7 +5086,7 @@ blockquote.t-editor__quote > * {
5024
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>
5025
5087
  </svg></button>
5026
5088
  </h4>
5027
- <div id="dncRIqDjTM2viRBflpaOF" 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;">
5028
5090
  <pre style="
5029
5091
  --line-digits: 2;
5030
5092
  --line-number-start: -1;
@@ -5051,7 +5113,7 @@ blockquote.t-editor__quote > * {
5051
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>
5052
5114
  </svg></button>
5053
5115
  </h4>
5054
- <div id="avXfy8FXQ284cJqQWKmtv" 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;">
5055
5117
  <pre style="
5056
5118
  --line-digits: 2;
5057
5119
  --line-number-start: -1;
@@ -5079,7 +5141,7 @@ blockquote.t-editor__quote > * {
5079
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>
5080
5142
  </svg></button>
5081
5143
  </h3>
5082
- <div id="Xrn5DXG1JDQxfDZDQNUl1" 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;">
5083
5145
  <pre style="
5084
5146
  --line-digits: 2;
5085
5147
  --line-number-start: -1;
@@ -5114,7 +5176,7 @@ blockquote.t-editor__quote > * {
5114
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>
5115
5177
  </svg></button>
5116
5178
  </h4>
5117
- <div id="ZVEObUnetvWOiCNK2Pqug" 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;">
5118
5180
  <pre style="
5119
5181
  --line-digits: 2;
5120
5182
  --line-number-start: -1;
@@ -5142,7 +5204,7 @@ blockquote.t-editor__quote > * {
5142
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>
5143
5205
  </svg></button>
5144
5206
  </h4>
5145
- <div id="DQr0ZEGV0rp2Z8DdtAUBS" 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;">
5146
5208
  <pre style="
5147
5209
  --line-digits: 2;
5148
5210
  --line-number-start: -1;
@@ -5172,7 +5234,7 @@ blockquote.t-editor__quote > * {
5172
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>
5173
5235
  </svg></button>
5174
5236
  </h4>
5175
- <div id="Bo3rZ4qmXbxPDXMwUpDyW" 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;">
5176
5238
  <pre style="
5177
5239
  --line-digits: 2;
5178
5240
  --line-number-start: -1;
@@ -5203,7 +5265,7 @@ blockquote.t-editor__quote > * {
5203
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>
5204
5266
  </svg></button>
5205
5267
  </h4>
5206
- <div id="pMw07tMWDNkh1MhDj3Lc6" 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;">
5207
5269
  <pre style="
5208
5270
  --line-digits: 2;
5209
5271
  --line-number-start: -1;
@@ -5232,7 +5294,7 @@ blockquote.t-editor__quote > * {
5232
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>
5233
5295
  </svg></button>
5234
5296
  </h4>
5235
- <div id="Kj9qSkh1ZCKJG3lhWYOey" 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;">
5236
5298
  <pre style="
5237
5299
  --line-digits: 2;
5238
5300
  --line-number-start: -1;
@@ -5262,7 +5324,7 @@ blockquote.t-editor__quote > * {
5262
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>
5263
5325
  </svg></button>
5264
5326
  </h3>
5265
- <div id="8zL0l5tFAaOcLCCCYWPyQ" 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;">
5266
5328
  <pre style="
5267
5329
  --line-digits: 2;
5268
5330
  --line-number-start: -1;
@@ -5297,7 +5359,7 @@ blockquote.t-editor__quote > * {
5297
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>
5298
5360
  </svg></button>
5299
5361
  </h4>
5300
- <div id="JjG29ClVWkZxfF0C6tepc" 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;">
5301
5363
  <pre style="
5302
5364
  --line-digits: 2;
5303
5365
  --line-number-start: -1;
@@ -5326,7 +5388,7 @@ blockquote.t-editor__quote > * {
5326
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>
5327
5389
  </svg></button>
5328
5390
  </h4>
5329
- <div id="QnhtLogXgNCLrxsRfK6x6" 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;">
5330
5392
  <pre style="
5331
5393
  --line-digits: 2;
5332
5394
  --line-number-start: -1;
@@ -5358,7 +5420,7 @@ blockquote.t-editor__quote > * {
5358
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>
5359
5421
  </svg></button>
5360
5422
  </h4>
5361
- <div id="L97BD22Pt6gxLe58g4QZL" 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;">
5362
5424
  <pre style="
5363
5425
  --line-digits: 2;
5364
5426
  --line-number-start: -1;
@@ -5386,7 +5448,7 @@ blockquote.t-editor__quote > * {
5386
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>
5387
5449
  </svg></button>
5388
5450
  </h4>
5389
- <div id="lMFitkjJ2gxdeNuoxSBYB" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5451
+ <div id="RzzAlId20lECnJ7GMpDxE" class="t-editor__code-container" data-lang="plaintext" style="position: relative;">
5390
5452
  <pre style="
5391
5453
  --line-digits: 2;
5392
5454
  --line-number-start: -1;
@@ -5420,7 +5482,7 @@ blockquote.t-editor__quote > * {
5420
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>
5421
5483
  </svg></button>
5422
5484
  </h4>
5423
- <div id="iyVtXl3btiT83l2YaQUmM" 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;">
5424
5486
  <pre style="
5425
5487
  --line-digits: 2;
5426
5488
  --line-number-start: -1;
@@ -5460,7 +5522,7 @@ blockquote.t-editor__quote > * {
5460
5522
  </svg></button>
5461
5523
  </h2>
5462
5524
  <p class="t-editor__paragraph">To validate your OpenAPI file in GitHub Actions, add this workflow:</p>
5463
- <div id="ccEKgoUmhHQAe4FOLdUEK" 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;">
5464
5526
  <pre style="
5465
5527
  --line-digits: 2;
5466
5528
  --line-number-start: -1;
@@ -5507,7 +5569,7 @@ blockquote.t-editor__quote > * {
5507
5569
  </svg></button>
5508
5570
  </h2>
5509
5571
  <p class="t-editor__paragraph">Set up the development environment:</p>
5510
- <div id="qDuHlRHnZfEKrcCv49ZUE" 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;">
5511
5573
  <pre style="
5512
5574
  --line-digits: 2;
5513
5575
  --line-number-start: -1;
@@ -5522,7 +5584,7 @@ blockquote.t-editor__quote > * {
5522
5584
  </svg></button>
5523
5585
  </div>
5524
5586
  <p class="t-editor__paragraph">To symlink the package and use it globally on your machine:</p>
5525
- <div id="cuUqnV289l7sd4PycsF2T" 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;">
5526
5588
  <pre style="
5527
5589
  --line-digits: 2;
5528
5590
  --line-number-start: -1;