Update learn page

This commit is contained in:
adilallo
2026-05-20 22:17:00 -06:00
parent 7ee6282c1a
commit 1688ac85c9
45 changed files with 1203 additions and 350 deletions
+3 -1
View File
@@ -71,7 +71,9 @@ export function getBlogPostFiles(): string[] {
try {
const files = fs.readdirSync(contentDirectory);
return files.filter(
(file) => file.endsWith(".md") || file.endsWith(".mdx"),
(file) =>
(file.endsWith(".md") || file.endsWith(".mdx")) &&
!file.startsWith("_"),
);
} catch (error) {
logger.error("Error reading blog content directory:", error);