vue-markdown-editor
vue-markdown-editor copied to clipboard
Passing markdown-it params, such as 'linkify'
I'd like to have links raw links rendered in the preview, but I am not sure how to pass the markdown-it supported parameters to the component.
Markdown-it support linkify: true per https://github.com/markdown-it/markdown-it#linkify , but I am not sure how to take advantage of this.
I did try the following, but it didn't work:
VMdEditor.use(vuepressTheme, { linkify: true });
I don't see anything in the documentation for this.