From 39c6a65d4ea86b5d33d461531113cc6a47900a2b Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 9 Sep 2024 11:26:57 -0500 Subject: [PATCH] CLDR-17803 site: drop Site Map markdown - to re-evaluate separately. --- docs/site/_layouts/page.html | 4 ++-- docs/site/assets/js/build.mjs | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/site/_layouts/page.html b/docs/site/_layouts/page.html index 04417382ece..38c0b1cf4c9 100644 --- a/docs/site/_layouts/page.html +++ b/docs/site/_layouts/page.html @@ -16,8 +16,8 @@ -
This navigation UI is temporary, just to give access to the pages.
Site Map
- +
This navigation UI is temporary, just to give access to the pages.
+ diff --git a/docs/site/assets/js/build.mjs b/docs/site/assets/js/build.mjs index 4cc83b4ac4d..c185a19c817 100644 --- a/docs/site/assets/js/build.mjs +++ b/docs/site/assets/js/build.mjs @@ -64,6 +64,8 @@ async function writeSiteMaps(out) { ).toString(); await fs.writeFile("./sitemap.xml", data, "utf-8"); console.log("Wrote sitemap.xml"); + + /* const coll = new Intl.Collator(["und"]); const allSorted = [...out.all].sort((a, b) => coll.compare(a.fullPath, b.fullPath) @@ -80,6 +82,7 @@ async function writeSiteMaps(out) { "utf-8" ); console.log("Wrote sitemap.md"); + */ } async function main() {