Open eddyv opened 4 months ago
Thanks for the report :raised_hands:
I would assume that the issue is due to the plugin always relying on remark-mdx
at the moment and this specific syntax being invalid MDX. I guess we would need to branch out based on if the file is Markdown or MDX but my assumption is this would involve quite a bit of work that I did not get into yet.
A workaround should be to escape the <
and >
characters:
\<-\>blah
Describe the bug
Hiya, thanks for the plugin! There may be an issue somewhere where we aren't properly escaping characters within markdown . For example, if you have a markdown file named
test.md
and contentsYou'd get the following error
If you have multiple occurrences of it
you'd get a less useful error like
To Reproduce
<->
Expected behavior
The plugin should be able to escape special characters when creating versions in starlight dev mode
How often does this bug happen?
Every time
System Info
Additional Context
A workaround is to escape the occurrences of it using inline codeblocks