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
I noticed last week that the script was no longer rendering anything. After troubleshooting for a while, I determined that a unicode character in a card title seemed to be the cause.
Adding the following to the script resolved the issue for me:
# Use UTF-8 in case content includes unicode charactersexport LC_ALL='en_US.UTF-8';
I didn't want to submit this as a PR because en_US might be a big assumption, I didn't know how to reliably appendUTF-8 to a locale, and I didn't know if there might be any unintended side effects of this if run from Terminal. But I thought I'd include here in case anyone else runs into the issue.
The text was updated successfully, but these errors were encountered:
I noticed last week that the script was no longer rendering anything. After troubleshooting for a while, I determined that a unicode character in a card title seemed to be the cause.
Adding the following to the script resolved the issue for me:
I didn't want to submit this as a PR because
en_US
might be a big assumption, I didn't know how to reliably appendUTF-8
to a locale, and I didn't know if there might be any unintended side effects of this if run from Terminal. But I thought I'd include here in case anyone else runs into the issue.The text was updated successfully, but these errors were encountered: