markdown-it isSpace is not defined
markdown-it isSpace is not defined, cause the ^14.0.1 of markdown-it is not available! isSpace is not build into dist (esm)
markdown-it isSpace is not defined, cause the ^14.0.1 of markdown-it is not available! isSpace is not build into dist (esm)
const text = editor.storage.markdown.parser.parse('1.hh') // error isSpace is not defined
switch markdown v13 is okay
Same problem here. Using Next.js 15 in a client side component.
Happens when the inserted content includes a list item, for example: 1. Bullet one and tiptap-markdown is being used as an extension in @tiptap/react
I used an npm override in my package.json to set the markdown-it package to 13.0.2 – then my issue dissappeared.
+1
switching down to 13.0.2 did indeed work.
"resolutions": {
"markdown-it": "13.0.2"
}
Switching to 13.0.2 worked!
This is still not fixed
Still a problem.