Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

sididev's avatar

Enable Markdown it vue 3 options

Hello here, I'm new to Markdown and I'm using markdown it vue 3 package I want to enable link linkify options etc. .. How can I do this with composition api vue 3?

<Markdown :source="post.data.body" />
0 likes
3 replies
AungHtetPaing__'s avatar
Level 22

@d3v I think you just need to pass linkify as props to Markdown component.

<Markdown :source="post.data.body" :linkify="true" />
1 like

Please or to participate in this conversation.