feat: allow `markdown.config` and `markdown.preConfig` to accept async function

pull/4512/head
Anthony Fu 8 months ago
parent e0350275b3
commit 42d94cddfc
No known key found for this signature in database
GPG Key ID: 179936958CD423FF

@ -53,11 +53,11 @@ export interface MarkdownOptions extends Options {
/** /**
* Setup markdown-it instance before applying plugins * Setup markdown-it instance before applying plugins
*/ */
preConfig?: (md: MarkdownIt) => void preConfig?: (md: MarkdownIt) => Promise<void>
/** /**
* Setup markdown-it instance * Setup markdown-it instance
*/ */
config?: (md: MarkdownIt) => void config?: (md: MarkdownIt) => Promise<void>
/** /**
* Disable cache (experimental) * Disable cache (experimental)
*/ */
@ -229,7 +229,7 @@ export async function createMarkdownRenderer(
md.use(restoreEntities) md.use(restoreEntities)
if (options.preConfig) { if (options.preConfig) {
options.preConfig(md) await options.preConfig(md)
} }
// custom plugins // custom plugins
@ -322,7 +322,7 @@ export async function createMarkdownRenderer(
// apply user config // apply user config
if (options.config) { if (options.config) {
options.config(md) await options.config(md)
} }
return md return md

Loading…
Cancel
Save