NitishStark's picture
Upload folder using huggingface_hub
c20f20c verified
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: ' '
}
]
}
]
})
}