OliverCi/freeplane2md

Unicode to UTF-8

diplomatech opened this issue · 1 comments

My Freeplane maps is written in portuguese language, which has accented characters. So, the freeplane2md converted all that accented characters to a fixed character code. I changed the freeplane2md.py code, at line 191, to solve this problem. There I added the parameter encoding = 'UTF-8' to the open(markdown_path, 'w')... => open(markdown_path, 'w', 'UTF-8').

Good point. The current behavior depends on the system configuration. I'll include forcing UTF-8 in the next version.