Spaces:
No application file
No application file
File size: 424 Bytes
c20f20c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | export function mspace(element, targetParent, previousSibling, nextSibling, ancestors) {
targetParent.children.push({
name: 'm:r',
type: 'tag',
attribs: {},
children: [
{
name: 'm:t',
type: 'tag',
attribs: {
'xml:space': 'preserve'
},
children: [
{
type: 'text',
data: ' '
}
]
}
]
})
}
|