@@ -216,23 +216,26 @@ export default defineContentConfig({
216216 source : [ docsV5Source , examplesV5Source ] ,
217217 schema : z . object ( {
218218 titleTemplate : z . string ( ) . optional ( ) ,
219- links : z . array ( Button )
219+ links : z . array ( Button ) ,
220+ rawbody : z . string ( )
220221 } )
221222 } ) ,
222223 docsv4 : defineCollection ( {
223224 type : 'page' ,
224225 source : [ docsV4Source , examplesV4Source ] ,
225226 schema : z . object ( {
226227 titleTemplate : z . string ( ) . optional ( ) ,
227- links : z . array ( Button )
228+ links : z . array ( Button ) ,
229+ rawbody : z . string ( )
228230 } )
229231 } ) ,
230232 docsv3 : defineCollection ( {
231233 type : 'page' ,
232234 source : [ docsV3Source , examplesV3Source ] ,
233235 schema : z . object ( {
234236 titleTemplate : z . string ( ) . optional ( ) ,
235- links : z . array ( Button )
237+ links : z . array ( Button ) ,
238+ rawbody : z . string ( )
236239 } )
237240 } ) ,
238241 blog : defineCollection ( {
@@ -244,7 +247,8 @@ export default defineContentConfig({
244247 date : z . string ( ) . date ( ) ,
245248 draft : z . boolean ( ) . default ( false ) ,
246249 category : z . enum ( [ 'Release' , 'Tutorial' , 'Announcement' , 'Article' ] ) ,
247- tags : z . array ( z . string ( ) )
250+ tags : z . array ( z . string ( ) ) ,
251+ rawbody : z . string ( )
248252 } )
249253 } ) ,
250254 landing : defineCollection ( {
@@ -275,7 +279,8 @@ export default defineContentConfig({
275279 logoIcon : z . string ( ) ,
276280 category : z . string ( ) ,
277281 nitroPreset : z . string ( ) ,
278- website : z . string ( ) . url ( )
282+ website : z . string ( ) . url ( ) ,
283+ rawbody : z . string ( )
279284 } )
280285 } ) ,
281286 manualSponsors : defineCollection ( {
0 commit comments