mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
[ci] format
This commit is contained in:
parent
c4155daeab
commit
fa96a01fc6
1 changed files with 4 additions and 1 deletions
|
@ -105,7 +105,10 @@ export async function generateRSS({ rssOptions, items }: GenerateRSSArgs): Promi
|
||||||
const root: any = { '?xml': { '@_version': '1.0', '@_encoding': 'UTF-8' } };
|
const root: any = { '?xml': { '@_version': '1.0', '@_encoding': 'UTF-8' } };
|
||||||
if (typeof rssOptions.stylesheet === 'string') {
|
if (typeof rssOptions.stylesheet === 'string') {
|
||||||
const isXSL = /\.xsl$/i.test(rssOptions.stylesheet);
|
const isXSL = /\.xsl$/i.test(rssOptions.stylesheet);
|
||||||
root['?xml-stylesheet'] = { '@_href': rssOptions.stylesheet, ...(isXSL && { '@_type': 'text/xsl' }) };
|
root['?xml-stylesheet'] = {
|
||||||
|
'@_href': rssOptions.stylesheet,
|
||||||
|
...(isXSL && { '@_type': 'text/xsl' }),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
root.rss = { '@_version': '2.0' };
|
root.rss = { '@_version': '2.0' };
|
||||||
if (items.find((result) => result.content)) {
|
if (items.find((result) => result.content)) {
|
||||||
|
|
Loading…
Reference in a new issue