echo724/notion2md

Encoding issue (No UTF-8 support)

Closed this issue · 1 comments

uPesy commented

When i use utf-8 characters, there is an issue. I have to add the encoding in the exporter.py, to solve the issue

    with open(os.path.join(output_path,block_title+'.md'),'w', encoding="utf-8") as output:
        output.write(blocks_convertor(blocks))

Thank you