-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ABKQPO edited this page Apr 25, 2026
·
4 revisions
GuideNH is an in-game guide framework for GTNH-era Minecraft mods. This wiki documents how the project is organized, how the runtime guide format works, and how to author pages, assets, recipes, scenes, and annotations without mixing game-only syntax into the GitHub Wiki itself.
- Installation
- Getting Started
- Guide Page Format
- Navigation
- Search
- Images And Assets
- Tags Reference
- GameScene
- Annotations
- Recipes
- Localization
- Examples
- FAQ
| Path | Purpose |
|---|---|
wiki/ |
Human-facing GitHub Wiki pages such as this one |
wiki/resourcepack/ |
Runtime guide source tree used by the mod at build time |
wiki/resourcepack/assets/guidenh/guidenh/ |
Example built-in guide pages and assets |
build/resources/main/assets/ |
Gradle output where the runtime guide assets are copied for development runs |
GuideNH intentionally uses two different authoring layers:
- GitHub Wiki markdown in
wiki/*.mdis for repository documentation and should stay plain GitHub Wiki markdown. - Runtime guide markdown in
wiki/resourcepack/...is for the in-game renderer and may use YAML frontmatter plus GuideNH-specific MDX tags such as<GameScene>,<RecipeFor>, and<Tooltip>.
The wiki explains the runtime syntax, but it does not use the runtime tags directly outside fenced code blocks.
- Put runtime guide files under
wiki/resourcepack/assets/<modid>/guidenh/. - Add language folders such as
_en_us/and_zh_cn/. - Put markdown pages inside those language folders.
- Declare navigation metadata in frontmatter when you want a page to appear in the sidebar.
- Use relative asset paths for page-local files and rooted
/...paths for guide-root assets.
The bundled example guide currently lives here:
wiki/resourcepack/assets/guidenh/guidenh/_en_us/index.mdwiki/resourcepack/assets/guidenh/guidenh/_en_us/markdown.mdwiki/resourcepack/assets/guidenh/guidenh/_en_us/rendering.mdwiki/resourcepack/assets/guidenh/guidenh/_en_us/structure.mdwiki/resourcepack/assets/guidenh/guidenh/assets/example_structure.snbt
Those files are the best place to inspect real, running examples while reading this wiki.