-
Notifications
You must be signed in to change notification settings - Fork 53
Closed
Description
It seems we use iso-8859-2 only at
| return Iso88592.decode(node.rawContent!); |
But now this functionality can be implemented with plain js, using TextDecoder, like this:
const decoder = new TextDecoder('iso-8859-2');
return decoder.decode(node.rawContent!);Reactions are currently unavailable