Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/advanced-usage/themes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
spotify---
title: Themes
description: ✨ Themes for Spicetify.
---
Comment on lines +1 to 4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Malformed YAML front matter—missing opening delimiter.

The change inserts spotify--- on line 1, which breaks the YAML front matter syntax. The opening delimiter should be --- alone, not prefixed with spotify. This will cause static site generators to fail parsing the metadata (title, description, etc.).

Apply this diff to restore proper front matter syntax:

-spotify---
+---
 title: Themes
 description: ✨ Themes for Spicetify.
 ---
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
spotify---
title: Themes
description: ✨ Themes for Spicetify.
---
---
title: Themes
description: ✨ Themes for Spicetify.
---
🤖 Prompt for AI Agents
In docs/advanced-usage/themes.md around lines 1 to 4, the YAML front matter
opener is malformed as "spotify---"; replace that line with a plain triple-dash
("---") so the file begins with a proper YAML front-matter delimiter, leaving
the existing title/description and the closing "---" intact.

Expand Down