Z.H.

Results 5 comments of Z.H.

Would like to know if there is a workaround or not. Thanks in advance!

## 1. Export directly ```python from rich.console import Console from rich.table import Table table = Table(title="测试") table.add_column("Title 测试") table.add_column("Title 2 测试") table.add_row("测试","test") table.add_row("test","测试") console = Console(record=True) console.print(table) console.save_svg('output.svg') ``` ![image](https://user-images.githubusercontent.com/29370032/190968198-bc4f9cf4-1459-41e8-be40-74da94835705.png)...

> Hey @onlyacat, I've added a `font_aspect_ratio` to `export_svg` and `save_svg`. If you use a custom font, you can use this new parameter to modify the default `0.61` value. That'll...