UNPKG

@progress/kendo-angular-editor

Version:
23 lines (22 loc) 723 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { semanticNodes } from './semantic-nodes'; import { marks as commonMarks, nodes as commonNodes, Schema } from '@progress/kendo-editor-common'; /** * @hidden */ const marks = commonMarks; const nodes = Object.assign(commonNodes, semanticNodes); /** * @hidden */ export const schema = new Schema({ marks, nodes }); /** * @hidden */ export { Schema };