(id: string, body: string, collection: ResolvedCollection, nuxt?: Nuxt)
| 3 | import type { ResolvedCollection } from '@nuxt/content' |
| 4 | |
| 5 | export async function parseContent(id: string, body: string, collection: ResolvedCollection, nuxt?: Nuxt) { |
| 6 | return (await createParser(collection, nuxt))({ |
| 7 | id, |
| 8 | body, |
| 9 | path: '/invalid/path', |
| 10 | }) |
| 11 | } |
no test coverage detected