Update intro.md with title and language metadata#77
Conversation
git add . git commit -m "work from Acode start" git push
Greptile SummaryThis PR modifies the YAML frontmatter of
Confidence Score: 2/5Not safe to merge — the change actively breaks the frontmatter of the intro page and injects an unrelated brand name into the docs. The single change in this PR replaces the YAML frontmatter opening delimiter with "Prepzo ", causing the documentation page to lose its lang and title metadata entirely and render garbage text at the top of the page. The PR description is also just raw git commands with no meaningful context, and the injected brand name is unrelated to this project. docs/getting-started/intro.md requires immediate attention — the frontmatter is broken and must be restored. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[intro.md loaded by docs site] --> B{Frontmatter delimiter present?}
B -- "YES (original: ---)" --> C[Parse lang and title metadata]
B -- "NO (changed to: Prepzo )" --> D[No frontmatter parsed]
C --> E[Page renders correctly with metadata]
D --> F["'Prepzo ', 'lang: en-US', 'title: Acode Plugins', '---' rendered as visible text"]
Reviews (1): Last reviewed commit: "Update intro.md with title and language ..." | Re-trigger Greptile |
| Prepzo | ||
| lang: en-US | ||
| title: Acode Plugins | ||
| --- |
There was a problem hiding this comment.
The opening
--- frontmatter delimiter has been replaced with Prepzo , which completely breaks the YAML frontmatter block. As a result, lang: en-US and title: Acode Plugins will no longer be recognized as metadata — instead, all four lines (Prepzo , lang: en-US, title: Acode Plugins, ---) will render as raw text at the top of the docs page. Additionally, "Prepzo" is an unrelated brand name and has no place in this documentation.
| Prepzo | |
| lang: en-US | |
| title: Acode Plugins | |
| --- | |
| --- | |
| lang: en-US | |
| title: Acode Plugins | |
| --- |
git add .
git commit -m "work from Acode start"
git push