diff --git a/src/editor/utils/element.ts b/src/editor/utils/element.ts index c44c6af..b6893c9 100644 --- a/src/editor/utils/element.ts +++ b/src/editor/utils/element.ts @@ -1224,6 +1224,8 @@ export function getTextFromElementList(elementList: IElement[]) { text += `${!isFirst ? ` ` : ``}${tdText}${isLast ? `\n` : ``}` } } + } else if (element.type === ElementType.TAB) { + text += `\t` } else if (element.type === ElementType.HYPERLINK) { text += element.valueList!.map(v => v.value).join('') } else if (element.type === ElementType.TITLE) {