#1529 Add word break feature

This commit is contained in:
Dolan
2022-06-15 00:07:12 +01:00
parent bdbd15e7d9
commit f414b4ee9a
13 changed files with 87 additions and 34 deletions

View File

@ -0,0 +1,6 @@
import { SpaceType } from "file/space-type";
import { XmlAttributeComponent } from "file/xml-components";
export class TextAttributes extends XmlAttributeComponent<{ readonly space: SpaceType }> {
protected readonly xmlKeys = { space: "xml:space" };
}