๐Ÿ“ฆ directus / docs

๐Ÿ“„ preMd.ts ยท 8 lines
1
2
3
4
5
6
7
8export default function (lang: string, label: string, source: unknown) {
	return `
\`\`\`${linguistToShiki(lang)} [${label}]
${typeof source === 'string' ? source : JSON.stringify(source, null, 2)}
\`\`\`
`;
}