maxnowack/node-podcast

Way to omit <itunes:summary> ?

Opened this issue · 0 comments

It looks like <itunes:summary> is no longer mentioned in the itunes docs:

https://help.apple.com/itc/podcasts_connect/#/itcb54353390

However, the library currently always sets it if there is a <description> set:

if (options.itunesSummary || options.description) {

The docs for <itunes:summary>, at least according to this page, says that it cannot include HTML. <description> includes HTML, however, so it seems like this could cause problems.

Is there a way to just not include <itunes:summary> at all? Should there be?