You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a markdown document encoded in UTF-8 with "²" characters, when we run the sphinx-build we get the error : pandoc: Cannot decode byte '\xb2': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream
Solution found : pandoc_markdown.py modify 2 lignes : 296 : with open(input_dir[1], 'wt',encoding="utf-8") as f: 311: output_string = open(output_dir[1],encoding="utf-8").read()
The text was updated successfully, but these errors were encountered:
Os: windows 10
Python: 3.5
Given a markdown document encoded in UTF-8 with "²" characters, when we run the sphinx-build we get the error :
pandoc: Cannot decode byte '\xb2': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream
Solution found :
pandoc_markdown.py modify 2 lignes :
296 : with open(input_dir[1], 'wt',encoding="utf-8") as f:
311: output_string = open(output_dir[1],encoding="utf-8").read()
The text was updated successfully, but these errors were encountered: