Colum width is wrong if emoji is used
StShadow opened this issue ยท 5 comments
StShadow commented
Follow snippet draws a table with incorrect width for column with Unicode smile (for example ๐ต, dizzy face, Unicode: U+1F635, UTF-8: F0 9F 98 B5).
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
if __name__ == '__main__':
table_data = [['๐ต'], ['๐ต']]
from terminaltables import SingleTable
table = SingleTable(table_data)
print table.table
StShadow commented
tadgh commented
I also have this issue, would love to see it addressed at some point ๐
10gic commented
johndavidsimmons commented
Please address this issue. It would be greatly appreciated
StShadow commented