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?
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:node-podcast/src/index.ts
Line 96 in 7379a25
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?