blob: 47e3005e5ed6d9b32cad82f9ee0c62532762f73b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
'@astrojs/markdoc': patch
---
Adds an "allowHTML" Markdoc integration option.
When enabled, all HTML in Markdoc files will be processed, including HTML elements within Markdoc tags and nodes.
Enable this feature in the `markdoc` integration configuration:
```js
// astro.config.mjs
export default defineConfig({
integrations: [markdoc({ allowHTML: true })],
});
```
|