Closed OmidH closed 4 years ago
Sorry had a false understanding. For anyone who is looking into this here is my sample
const convMD = markdownToDraft(markdown, {
blockTypes: {
hr: item => {
return {
type: 'HR',
mutability: 'IMMUTABLE',
text: '---',
data: {
tag: '---',
},
}
},
},
})
Hi, I know that
---
is supported in Remarkable. But when sending my markdown throughmarkdownToDraft
all the---
's are filtered out. Do I do something wrong?Here also a sample
Best,
Omid