Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import { glob } from "glob"; import { allLanguages } from "i18n/allLanguages"; export function getAllMarkdownFiles(): Array<string> { return glob.sync("markdown/**/*.md"); } /* Turns markdown/issues/communities-and-trust.md into ['issues', 'communities-and-trust'] */ export function filenameToSlug(filename: string) { Iif (!(filename.startsWith("markdown/") && filename.endsWith(".md"))) { throw Error(`Invalid filename ${filename}`); } return filename .substring("markdown/".length, filename.length - ".md".length) .split("/"); } // From Next.js documentation: // https://nextjs.org/docs/pages/guides/internationalization#how-does-this-work-with-static-generation export function getAllMarkdownPathsWithLocales(): { params: { slug: string[] }; locale: string; }[] { const baseSlugs = getAllMarkdownFiles().map(filenameToSlug); const paths = []; for (const lang of allLanguages) { for (const slug of baseSlugs) { paths.push({ params: { slug }, locale: lang }); } } return paths; } |