fix: restore missing blog posts by fixing MDX file issues#7492
Merged
alexquincy merged 16 commits intomasterfrom Mar 11, 2026
Merged
fix: restore missing blog posts by fixing MDX file issues#7492alexquincy merged 16 commits intomasterfrom
alexquincy merged 16 commits intomasterfrom
Conversation
Two issues prevented blog posts after Aug 2023 from appearing on /blog: 1. Remove empty 0-byte index.mdx at 09-05-layer5-and-intel-collaboration/ which caused MDX compilation failures during gatsby build, aborting processing of all subsequent blog posts alphabetically. 2. Rename 27 blog post files with non-standard names (post.mdx, docker-compose-with-meshery.mdx, git-aliases.mdx, etc.) to the conventional index.mdx to ensure consistent processing by the gatsby-plugin-mdx pipeline. Blog posts with resource: true frontmatter were still visible on /resources (which queries across collections) but absent from /blog (which queries only the blog collection with published: true). Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
691aa6d to
423cf2c
Compare
src/collections/blog/2025/12-28-gemini-cli-trusted-directories/index.mdx
Outdated
Show resolved
Hide resolved
src/collections/blog/2025/12-28-gemini-cli-trusted-directories/index.mdx
Outdated
Show resolved
Hide resolved
src/collections/blog/2025/11-03-2025-understanding-configmaps/index.mdx
Outdated
Show resolved
Hide resolved
Comment on lines
134
to
137
There was a problem hiding this comment.
This table uses || row prefixes, which doesn’t conform to Markdown table syntax and is likely to render incorrectly. Use standard | ... | rows for all lines in the table.
src/collections/blog/2025/10-09-2025-agents-instructions/index.mdx
Outdated
Show resolved
Hide resolved
src/collections/blog/2024/10-22-meet-the-maintainer-aadhitya-amarendiran/index.mdx
Outdated
Show resolved
Hide resolved
Member
|
🚀 Preview for commit 423cf2c at: https://69b1e40333f4fe38be39e44a--layer5.netlify.app |
…/index.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
…index.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
…marendiran/index.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
….mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
…/index.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Member
|
🚀 Preview for commit f8a03ff at: https://69b1e900e7809f379130d73a--layer5.netlify.app |
Contributor
|
The intel blog post needs to be restored. |
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
Member
Author
|
Got it! |
leecalcote
commented
Mar 11, 2026
src/collections/blog/2023/09-05-layer5-and-intel-collaboration/index.mdx
Outdated
Show resolved
Hide resolved
Co-authored-by: Lee Calcote <leecalcote@gmail.com> Signed-off-by: Lee Calcote <leecalcote@gmail.com>
…ex.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
…ex.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Alex Quinn <227241865+alexquincy@users.noreply.github.com>
alexquincy
approved these changes
Mar 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Blog posts after August 24, 2023 were missing from https://layer5.io/blog despite being present in the repository. Those same posts were visible under https://layer5.io/resources (for posts with
resource: true), confirming they existed but were not being processed correctly for the blog listing.Root Cause
Two issues in
src/collections/blog/:1. Empty 0-byte MDX file
src/collections/blog/2023/09-05-layer5-and-intel-collaboration/index.mdxwas a completely empty file (0 bytes). Duringgatsby build, this caused MDX compilation failures that aborted processing of all subsequent blog posts sorted alphabetically — everything after August 24, 2023.2. Non-standard blog post filenames
27 blog posts used non-standard filenames (
post.mdx,docker-compose-with-meshery.mdx, etc.) instead of the conventionalindex.mdx, causing inconsistent processing by the Gatsby MDX pipeline.Fix
09-05-layer5-and-intel-collaboration/index.mdxfileindex.mdxAffected Posts Restored