Common Issues
Solutions to frequent problems.
"My entry doesn't appear in the index"
Check:
- Is
draft: false? (not draft: true) - Do the folder and .md file names match?
- Is the date in correct format (YYYY-MM-DD)?
- Did you wait 3-5 minutes for the build?
Fix:
- Set
draft: false - Rename folder or file to match
- Fix date format
- Wait for deployment to complete
"Entry appears but looks wrong"
Check:
- Is frontmatter formatted correctly?
- Are quotes in the right places?
- Is indentation consistent (2 spaces)?
Fix:
- Validate YAML: https://www.yamllint.com/
- Check examples in this documentation
- Fix indentation and quotes
"Changes don't show up on live site"
Check:
- Did you commit and push?
- Did you wait 3-5 minutes?
- Did the build succeed?
Fix:
- Run
git push - Wait full 3-5 minutes
- Check Netlify deploy status
- Hard refresh browser (Cmd+Shift+R)
"I broke something"
Fix:
- Find the last working commit:
git log - Revert:
git revert HEAD - Push:
git push - Or ask for help!
Next Steps