Add metadata to intro.md for Acode Plugins#78
Conversation
Greptile SummaryThis PR replaces the opening
Confidence Score: 1/5This PR introduces a breaking change to the documentation front matter — merging it will corrupt the page metadata for the plugin introduction page. The deletion of docs/getting-started/intro.md — the front matter opening delimiter is broken. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["intro.md loaded by doc site builder"] --> B{"Does file start with ---?"}
B -- "YES (before PR)" --> C["YAML front matter parsed\nlang: en-US\ntitle: Acode Plugins"]
B -- "NO (after PR — starts with 'Prepzo ')" --> D["Front matter NOT parsed\nlang/title rendered as plain text"]
C --> E["Page rendered with correct title & language"]
D --> F["Page rendered WITHOUT metadata\n'lang: en-US' and 'title: Acode Plugins'\nappear as body text"]
Reviews (1): Last reviewed commit: "Add metadata to intro.md for Acode Plugi..." | Re-trigger Greptile |
| Prepzo | ||
| lang: en-US | ||
| title: Acode Plugins | ||
| --- |
There was a problem hiding this comment.
The opening
--- front matter delimiter has been replaced with Prepzo (an unrelated word), which completely breaks the YAML front matter block. Without the opening ---, parsers (Docusaurus, VitePress, etc.) will not recognize lang: en-US and title: Acode Plugins as metadata — they will be rendered as plain text in the page body instead. The closing --- on line 4 is now also orphaned and may render as a horizontal rule.
| Prepzo | |
| lang: en-US | |
| title: Acode Plugins | |
| --- | |
| --- | |
| lang: en-US | |
| title: Acode Plugins | |
| --- |
|
F*ck spammers 😵💫 |
No description provided.