Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x 1x 1x 1x 1x 1x 247x | import { isElementOfType } from 'roosterjs-content-model-dom';
const MSO_COMMENT_ANCHOR_HREF_REGEX = /#_msocom_/;
const MSO_SPECIAL_CHARACTER = 'mso-special-character';
const MSO_SPECIAL_CHARACTER_COMMENT = 'comment';
const MSO_ELEMENT = 'mso-element';
const MSO_ELEMENT_COMMENT_LIST = 'comment-list';
/**
* @internal
* Check whether the element contain Word attributes related to comments and if it does we should no process
* this element.
* @returns
*/
export function processWordComments(styles: Record<string, string>, element: HTMLElement) {
return (
styles[MSO_SPECIAL_CHARACTER] == MSO_SPECIAL_CHARACTER_COMMENT ||
(isElementOfType(element, 'a') && MSO_COMMENT_ANCHOR_HREF_REGEX.test(element.href)) ||
styles[MSO_ELEMENT] == MSO_ELEMENT_COMMENT_LIST
);
}
|