docs: remove stray orphaned front matter block on Planning page#1166
Conversation
Fixes layer5io#1162 Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
|
Yay, your first pull request! 👍 A contributor will be by to give feedback soon. In the meantime, please review the Layer5 Community Welcome Guide and sure to join the community Slack. |
There was a problem hiding this comment.
Code Review
This pull request removes misplaced front matter metadata from the middle of the self-hosted planning guide markdown file. There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
|
Thank you for contributing to the Layer5 community! 🎉 \ \ |
|
Thanks @UtkarshAnandd lgtm!! |

Fixes #1162
Notes for Reviewers
This PR fixes #1162
The Planning page had a stray, orphaned block of front-matter-like text
(title fragment, description, categories, tags, weight) sitting in the
middle of the content, right after the
{{< alert >}}shortcode,followed by an extra
---.That trailing
---caused the preceding text to render as a headinginstead of a normal paragraph, and the shortcode's placeholder token got
swept into it — so instead of being replaced with the rendered alert
box, it showed up as raw
HAHAHUGOSHORTCODE...text, both in the pagebody and in the auto-generated "On this page" sidebar.
Fix: removed the 6 stray lines. Nothing else on the page was touched.
Tested locally with
make site— the Planning page now renders withnormal font sizing and no raw shortcode text anywhere, sidebar nav
included. Screenshot above shows the page after the fix.
Signed commits