nuxt/content markdownParser change local options
I use
like this:
It works well but automatically replaces markdown headings like
I want to keep 'normal' header tags without links etc. so I'm looking for an option to change this behavior in my component. If possible, I don't want to disable this functionality globally in my nuxt config because I might need it later in a blog component.
import markdownParser from '@nuxt/content/transformers/markdown' to parse the markdown like this:
It works well but automatically replaces markdown headings like
### Heading with links+anchortags like this:I want to keep 'normal' header tags without links etc. so I'm looking for an option to change this behavior in my component. If possible, I don't want to disable this functionality globally in my nuxt config because I might need it later in a blog component.
