feat: allow `markdown.config` and `markdown.preConfig` to accept async function (#4512)

pull/4509/merge
Anthony Fu 8 months ago committed by GitHub
parent e0350275b3
commit b88ae8d4a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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) => Awaited<void>
/** /**
* Setup markdown-it instance * Setup markdown-it instance
*/ */
config?: (md: MarkdownIt) => void config?: (md: MarkdownIt) => Awaited<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