Mark Barnes

Results 4 comments of Mark Barnes

I reported the same issue in #879. In my case, the problem is happening on my production server, but not my development server. This would suggest it's either server-related, there's...

I've done some more digging on this. The problem is introducted by the following line in AMPArticle::create(): `$document->loadHTML($instantArticle);` Prior to that line, $instantArticle looks like this: `‘Who said growing old...

The problem can be prevented within the instant articles plugin, by ensuring that no extended characters are sent to the AMPArticle:create() method. For example, like this: ```php $article_html = $article->render();...

This is seven months on with no progress. Could you at least add a filter before `AMPArticle::create()` so that we can bypass the issue by converting to entities? ```php $article_html...