|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP |
2 | 2 |
|
3 | 3 | exports[`createSitemap() returns a sitemap with no links 1`] = ` |
4 | | -"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?> |
5 | | - <urlset xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\"> |
| 4 | +"<?xml version="1.0" encoding="UTF-8"?> |
| 5 | + <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
6 | 6 | |
7 | 7 | </urlset>" |
8 | 8 | `; |
9 | 9 |
|
10 | 10 | exports[`createSitemap() returns a sitemap with specified urls 1`] = ` |
11 | | -"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?> |
12 | | - <urlset xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\"> |
| 11 | +"<?xml version="1.0" encoding="UTF-8"?> |
| 12 | + <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
13 | 13 | <url> |
14 | 14 | <loc>http://localhost:3000/</loc> |
15 | 15 | <lastmod>2022-01-01</lastmod> |
@@ -40,15 +40,15 @@ exports[`createSitemap() returns a sitemap with specified urls 1`] = ` |
40 | 40 | `; |
41 | 41 |
|
42 | 42 | exports[`createSitemapIndex() returns a sitemap index with no sitemaps 1`] = ` |
43 | | -"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?> |
44 | | - <sitemapindex xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\"> |
| 43 | +"<?xml version="1.0" encoding="UTF-8"?> |
| 44 | + <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
45 | 45 | |
46 | 46 | </sitemapindex>" |
47 | 47 | `; |
48 | 48 |
|
49 | 49 | exports[`createSitemapIndex() returns a sitemap index with specified sitemaps 1`] = ` |
50 | | -"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?> |
51 | | - <sitemapindex xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\"> |
| 50 | +"<?xml version="1.0" encoding="UTF-8"?> |
| 51 | + <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
52 | 52 | <sitemap> |
53 | 53 | <loc>http://localhost:3000/post-sitemap.xml</loc> |
54 | 54 | <lastmod>2022-01-01</lastmod> |
|
0 commit comments