Run commands from:
e:\GitHub\soulioli.com
Use PowerShell in VS Code terminal.
bundle install
bundle exec jekyll serve
Open:
http://127.0.0.1:4000
powershell -ExecutionPolicy Bypass -File scripts/new-post.ps1 -Title "My Post Title" -Tag note
Allowed tags:
guidenotegamePost files are created in _posts/.
---
layout: post
title: "My Post Title"
date: 2026-02-24 15:00:00 -0500
tags: [note]
pinned: false
---
Rules:
date is in the future, the post will not appear until that time.To normalize pin_order for pinned posts:
powershell -ExecutionPolicy Bypass -File scripts/normalize-pin-order.ps1
Pin ranges:
guide => 100-199note => 200-299game => 300-399Always run before pushing:
powershell -ExecutionPolicy Bypass -File scripts/pre-push-check.ps1
Validation checks:
_config.ymlpin_orderpin_orderpin_order range compliance by taggit add .
git commit -m "your update message"
git push