We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fb8ed commit ee5f110Copy full SHA for ee5f110
1 file changed
great_tables/_export.py
@@ -449,7 +449,8 @@ def save(
449
file = str(Path(file).with_suffix(".png"))
450
451
# Get the HTML content from the displayed output
452
- html_content = as_raw_html(self)
+ # Prepend utf-8 charset so the Chrome webdriver renders unicode correctly
453
+ html_content = "<meta charset='utf-8'>" + as_raw_html(self)
454
455
wdriver = _get_web_driver(web_driver)
456
0 commit comments