mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
925cff31bc
commit
67bb22e5a1
1 changed files with 3 additions and 2 deletions
|
@ -190,11 +190,12 @@ rss({
|
||||||
customData: '<itunes:author>MF Doom</itunes:author>',
|
customData: '<itunes:author>MF Doom</itunes:author>',
|
||||||
items: episodes.map((episode) => ({
|
items: episodes.map((episode) => ({
|
||||||
// ...
|
// ...
|
||||||
customData: `<itunes:episodeType>${episode.frontmatter.type}</itunes:episodeType>` +
|
customData:
|
||||||
|
`<itunes:episodeType>${episode.frontmatter.type}</itunes:episodeType>` +
|
||||||
`<itunes:duration>${episode.frontmatter.duration}</itunes:duration>` +
|
`<itunes:duration>${episode.frontmatter.duration}</itunes:duration>` +
|
||||||
`<itunes:explicit>${episode.frontmatter.explicit || false}</itunes:explicit>`,
|
`<itunes:explicit>${episode.frontmatter.explicit || false}</itunes:explicit>`,
|
||||||
})),
|
})),
|
||||||
})
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
### `trailingSlash`
|
### `trailingSlash`
|
||||||
|
|
Loading…
Reference in a new issue