This folder contains the documentation site for GuideHub KingShot mobile game.
docs/
├── index.md # Homepage
├── _config.yml # Jekyll configuration
├── README.md # This file
├── assets/
│ ├── css/ # Custom stylesheets
│ ├── js/ # Custom scripts
│ └── images/ # Images and media
└── pages/
├── getting-started.md
├── features.md
└── faq.md
- Update _config.yml: Replace
yourusernamewith your GitHub username - Enable GitHub Pages:
- Go to your repository Settings
- Find Pages section
- Set Source to "Deploy from a branch"
- Select "main" branch and "/docs" folder
- Customize content: Edit markdown files to add your content
- Deploy: Push changes to trigger automatic deployment
To preview changes locally:
# Install Jekyll (requires Ruby)
gem install bundler jekyll
# Navigate to docs folder
cd docs
# Build and serve
bundle exec jekyll serve
# Visit http://localhost:4000- Add new pages to the
pages/folder - Update
_config.ymlheader_pages to add navigation links - Use Markdown for content
- Add images to
assets/images/