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

Fix input encoding, removing the need for Cleaner class #1

Merged
merged 2 commits into from
May 29, 2018

Conversation

gfabrizi
Copy link
Contributor

@gfabrizi gfabrizi commented May 28, 2018

The Dom Crawler Component of Symfony has a strange behaviour: if you load html string in the constructor, it cannot handle the utf-8 encoding.
Quick fix: using an empty constructor then passing the html string to the addHtmlContent method, this way the encoding is handled correctly thus making the Cleaner class not needed anymore.

See: https://www.hieule.info/programming/symfony-dom-crawler-component-utf-8-html

@@ -41,14 +41,15 @@ public function getAsHtml(): string

private function convert(string $data, int $startPage, int $numOfPages): void
{
$crawler = new Crawler($data);
$crawler = new Crawler();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace mess!

@garak
Copy link
Member

garak commented May 28, 2018

Can we add a test to ensure that a text with "strange" character is converted, as we expect?

@garak garak merged commit 0e2c07e into skuola:master May 29, 2018
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

Successfully merging this pull request may close these issues.

2 participants