Spaces:
No application file
No application file
| 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: ' ' | |
| } | |
| ] | |
| } | |
| ] | |
| }) | |
| } | |