-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Description
I am trying to include my xsl stylesheet but somehow it doesn't work.
My code:
xml(
{
"?xml-stylesheet": [{ _attr: { type: "text/xsl", href: "sitemap.xsl" } }],
sitemapindex: [
{ _attr: { xmlns: "http://www.sitemaps.org/schemas/sitemap/0.9" } },
{ sitemap: [
{ loc: "https://nextjs.marcofranssen.nl/blog-sitemap.xml" },
{ lastmod: new Date().toISOString() },
]
],
},
{ declaration: true }
)Result:
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="sitemap.xsl"></?xml-stylesheet>Expected:
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://nextjs.marcofranssen.nl/blog-sitemap.xml</loc>
<lastmod>2021-01-24T12:55:02.245Z</lastmod>
</sitemap>
</sitemapindex>vaderj and cbw2007
Metadata
Metadata
Assignees
Labels
No labels