Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 18:30:10 +00:00
co-authored by renee-png
parent 746f8c74e3
commit c0e5d935c0
+9 -1
View File
@@ -494,7 +494,15 @@ export function CustomFormBuilder() {
heading?: 0 | 1 | 2 | 3;
marker?: string; // list marker prefix like "1." or "•"
}
| { kind: "table"; rows: TableCellSeg[][] };
| { kind: "table"; rows: TableCellSeg[][] }
| {
kind: "image";
src: string;
align: "left" | "center" | "right";
widthPx?: number;
heightPx?: number;
alt?: string;
};
// Walk a DOM subtree, emitting inline runs with bold/italic/underline marks.
// <br> becomes a newline character within the current run stream.