Apply Word document styles to maintain consistent formatting across your document.Linked styles preserve the original Word styling system, including style inheritance and formatting rules.
Important: Linked Styles work with Word documents. This demo simulates the visual effect.
// Styles are automatically imported from styles.xmlconst styles = editor.helpers.linkedStyles.getStyles()// Apply a style by IDeditor.commands.setStyleById('Heading1')// Or with the style objectconst titleStyle = editor.helpers.linkedStyles.getStyleById('Title')editor.commands.setLinkedStyle(titleStyle)