diff --git a/src/textual_webterm/svg_exporter.py b/src/textual_webterm/svg_exporter.py index e2b7978..1fd9d28 100644 --- a/src/textual_webterm/svg_exporter.py +++ b/src/textual_webterm/svg_exporter.py @@ -216,11 +216,6 @@ def render_terminal_svg( # Build tspan attributes attrs = [f'x="{x:.1f}"'] - # Use textLength to enforce exact character spacing for alignment - span_width = columns * char_width - attrs.append(f'textLength="{span_width:.1f}"') - attrs.append('lengthAdjust="spacingAndGlyphs"') - # Foreground color if span["fg"] != foreground: attrs.append(f'fill="{span["fg"]}"')