We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f74581 commit c3efdd5Copy full SHA for c3efdd5
src/runtime/stringify/mdc-remark.ts
@@ -64,6 +64,10 @@ export function mdcRemark(options?: Options | undefined | null) {
64
node.type = mdcTextComponentType as typeof node.type
65
66
// ensure :br and inline components are separated by a space
67
+ // binding is a special case, with it's secial syntax, we don't need to do anything
68
+ if ((node as unknown as { name: string }).name === 'binding') {
69
+ return
70
+ }
71
if (index && parent && parent.children) {
72
if (index > 0 && parent.children[index - 1].type === 'text') {
73
const text = parent.children[index - 1] as Text
0 commit comments