b835e285de
* Added schemas to markdown plugin * Added new schemas to main package * Changesets * typeraw * Explaination about the weird type hack * Added markdown.mode to config * Added comment * Formatted * Moved validation to `astro` and added RemarkPlugin ad RehypePlugin * Removed the ability to have a custom markdown renderer internally * Fixed plugin type * Removed unused renderMarkdownWithFrontmatter * Added missing dependency * Dynamically import astro markdown * Cache import
29 lines
742 B
TypeScript
29 lines
742 B
TypeScript
import * as unified from 'unified';
|
|
|
|
async function importPlugin(p: string | unified.Plugin): Promise<unified.Plugin> {
|
|
if (typeof p === 'string') {
|
|
const importResult = await import(p);
|
|
return importResult.default;
|
|
}
|
|
|
|
return p;
|
|
}
|
|
|
|
export function loadPlugins(
|
|
items: (string | [string, any] | unified.Plugin<any[], any> | [unified.Plugin<any[], any>, any])[]
|
|
): Promise<[unified.Plugin, any?]>[] {
|
|
return items.map((p) => {
|
|
return new Promise((resolve, reject) => {
|
|
if (Array.isArray(p)) {
|
|
const [plugin, opts] = p;
|
|
return importPlugin(plugin)
|
|
.then((m) => resolve([m, opts]))
|
|
.catch((e) => reject(e));
|
|
}
|
|
|
|
return importPlugin(p)
|
|
.then((m) => resolve([m]))
|
|
.catch((e) => reject(e));
|
|
});
|
|
});
|
|
}
|