(node: LineNode, settings: HTMLSettings)
| 676 | }; |
| 677 | |
| 678 | const htmlLine = (node: LineNode, settings: HTMLSettings): string => { |
| 679 | const builder = new HtmlDefaultBuilder(node, settings) |
| 680 | .commonPositionStyles() |
| 681 | .commonShapeStyles(); |
| 682 | |
| 683 | return `\n<div${builder.build()}></div>`; |
| 684 | }; |
| 685 | |
| 686 | export const htmlCodeGenTextStyles = (settings: HTMLSettings) => { |
| 687 | const result = previousExecutionCache |
no test coverage detected