You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've also developed a Vue component for rendering Markdown, similar to yours.
I noticed that when directly converting Markdown to MDAST, there's an issue with rendering inline HTML tags - the processor incorrectly treats the content inside these inline tags as Markdown that should be rendered, which leads to strange rendering results.
You can check my component for reference. The current solution is to convert Markdown to HAST first before rendering, which resolves this issue.