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.
I received this error on a Windows 11 setup while trying to ingest exported notion files.
If anyone else gets this, you can modify ingest.py: with open(p) as f: to with codecs.open(p, encoding='utf-8') as f:
(or whichever encoding you need) to solve things.