in buildSrc/src/main/groovy/org/grails/gradle/MinutesTask.groovy [142:161]
static RssItem rssItemWithPage(String title,
Date pubDate,
String link,
String guid,
String html) {
String htmlWithoutTitleAndDate = html
if (htmlWithoutTitleAndDate.contains('<span class="date">')) {
htmlWithoutTitleAndDate = htmlWithoutTitleAndDate.substring(htmlWithoutTitleAndDate.indexOf('<span class="date">'))
htmlWithoutTitleAndDate = htmlWithoutTitleAndDate.substring(htmlWithoutTitleAndDate.indexOf('</span>') + '</span>'.length())
}
RssItem.Builder builder = RssItem.builder()
.title(title)
.pubDate(ZonedDateTime.of(Instant.ofEpochMilli(pubDate.time)
.atZone(ZoneId.systemDefault())
.toLocalDateTime(), ZoneId.of("GMT")))
.link(link)
.guid(guid)
.description(htmlWithoutTitleAndDate)
builder.build()
}