Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTML to JSON converting unicode characters #6

Open
JamesonJames opened this issue Oct 20, 2016 · 0 comments
Open

HTML to JSON converting unicode characters #6

JamesonJames opened this issue Oct 20, 2016 · 0 comments

Comments

@JamesonJames
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant