File size: 259 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 | export function mglyph(element, targetParent, previousSibling, nextSibling, ancestors) {
// No support in omml. Output alt text.
if (element.attribs?.alt) {
targetParent.children.push({
type: 'text',
data: element.attribs.alt
})
}
}
|