Skip to content

Central knowledge base for Unofficial Crusader Patch - installation, modding, AI editing, developer docs & more (served via GitHub Pages).

Notifications You must be signed in to change notification settings

UnofficialCrusaderPatch/UCP-Wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

UCP‑Wiki

Unofficial Crusader Patch — Central Documentation Hub > Flat Markdown pages for players, modders, and developers. Easily embeddable and readable on GitHub.


What is this repo?

  • A single source of truth that replaces the separate wikis of UnofficialCrusaderPatch2 and UnofficialCrusaderPatch3.
  • A comprehensive knowledge base for vanilla Stronghold Crusader mechanics, stats, and strategies.
  • Every page lives under docs/ as plain .md, so:
    • GitHub shows a nice preview out-of-the-box.
    • Other sites can load the raw Markdown via JavaScript and render it with any library (marked, markdown-it, etc.).

Quick links

Section Page
Getting Started docs/User-Guides/Getting-Started/Recommended-Setups.md
Crusader Wiki docs/Stronghold-Crusader-Wiki/Units/Units-Overview.md
AI Lords Guide docs/Stronghold-Crusader-Wiki/AI-Lords/AI-Lords-Overview.md
Create a Mod docs/Modding-with-UCP/Creating-Extensions/Creating-a-Plugin.md
Developer Zone docs/Developer-Zone/Contributor-Tutorial.md
Project Roadmap docs/Project/Roadmap-Ideas.md

See the full sidebar structure in docs/_Sidebar.md. Note that the custom website will generate this sidebar automatically from the file structure.


Embedding the wiki in your own site

To embed a page, you need its raw GitHub URL. For example, to fetch and render the Installation.md page:

// Example: fetch & render the Installation page
import { marked } from 'marked';

const url = 'https://raw.githubusercontent.com/UnofficialCrusaderPatch/UCP-Wiki/main/docs/User-Guides/Getting-Started/Installation.md';

fetch(url)
  .then(r => r.text())
  .then(md => {
    document.getElementById('wiki-root').innerHTML = marked.parse(md);
  });

About

Central knowledge base for Unofficial Crusader Patch - installation, modding, AI editing, developer docs & more (served via GitHub Pages).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published