jikan-me / jikan

Unofficial MyAnimeList PHP+REST API which provides functions other than the official API
https://jikan.moe
MIT License
851 stars 94 forks source link

Anime synopsis missing newlines between paragraphs #495

Closed ToshY closed 1 year ago

ToshY commented 1 year ago

Problem

Anime synopsis are missing newlines between paragraph due to usage of meta description for XPath.

Reproduction

Example MAL ID 6

Solution

  1. Update XPath for Synopsis to no longer use meta tag for description, but actual content: //p[@itemprop='description'].
  2. Update existing test by changing the assertStringContainsString to assertEquals on exact description including newlines.