@studiocms/markdoc
Version:
Add MarkDoc Support to your StudioCMS project with ease!
12 lines (11 loc) • 349 B
TypeScript
/**
* The Markdoc renderer configuration for StudioCMS.
*
* This renderer is responsible for handling Markdoc content within StudioCMS,
* utilizing shared configuration options for sanitization and rendering.
*/
declare const renderer: {
name: string;
renderer: typeof import("../lib/render").renderMarkDoc;
};
export default renderer;