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 ran into an issue when converting our content from HTML to JSON that the multibyte UNICODE characters were not being encoded literally, they were being escaped as \uXXXX.
The fix is to add the JSON_UNESCAPED_UNICODE constant to line 54 of the HtmlToJson.php file:
I ran into an issue when converting our content from HTML to JSON that the multibyte UNICODE characters were not being encoded literally, they were being escaped as \uXXXX.
The fix is to add the JSON_UNESCAPED_UNICODE constant to line 54 of the HtmlToJson.php file:
return json_encode(array('data' => $data), JSON_UNESCAPED_UNICODE);
I am going to put in a patch request and wanted to let you know here first. Thanks
The text was updated successfully, but these errors were encountered: