func (r *review) getProgress(topArea *goquery.Selection) string {
    progress := topArea.Find("div").First().Find("div:nth-of-type(2)").Text()
    progress = strings.Replace(progress, "episodes seen", "", -1)
    progress = strings.Replace(progress, "chapters read", "", -1)
    return strings.TrimSpace(progress)