diff options
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/remark-admonitions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remark-admonitions.ts b/src/plugins/remark-admonitions.ts index 1f718ca..09bb284 100644 --- a/src/plugins/remark-admonitions.ts +++ b/src/plugins/remark-admonitions.ts @@ -49,7 +49,7 @@ function transformUnhandledDirective( } /** From Astro Starlight: Function that generates an mdast HTML tree ready for conversion to HTML by rehype. */ -// biome-ignore lint/suspicious/noExplicitAny: <explanation> +// biome-ignore lint/suspicious/noExplicitAny: mdast types require any for flexibility function h(el: string, attrs: Properties = {}, children: any[] = []): P { const { properties, tagName } = _h(el, attrs); return { |
