Adding Wikis
The Wiki (limelight:wiki
) extension has built-in support for querying the
Minecraft Wiki, but you might want to add support for other wikis (e.g. your
mod's wiki). For this use case, Limelight has a resource-pack-based way to add custom wikis (which is
used for the default Minecraft Wiki!).
Wikis are defined as resources under assets/<namespace>/limelight/wiki/<wikiname>.json
, and have this
schema:
interface WikiDescription {
/**
* The title of this wiki, to be shown in the results.
* This uses the vanilla JSON text format.
*/
title: JSONTextComponent;
/**
* A key that can be used to quickly search in this wiki via a bang.
* For example, `mcwiki` allows you to search like `!mcwiki Creeper`
*/
bangKey?: string;
/**
* The type of this wiki.
* Limelight supports MediaWiki and MkDocs wikis by default, but new wiki sources
* can be added by Limelight addons.
*/
type: "limelight:media_wiki" | "limelight:mkdocs" | string;
/**
* The source of this wiki. Specific to this wiki's `type`.
*/
source: unknown;
/**
* Language-specific source overrides.
* Keys are language identifiers used by Minecraft and values are wiki sources.
*/
languageOverrides?: { [languageKey: string]: unknown };
};
For example, here's a wiki definition for the docs site you're currently on:
assets/example-pack/limelight/wiki/wisp_forest.json
{
"type": "limelight:mkdocs",
"title": "Wisp Forest",
"bang_key": "wispforest",
"source": {
"url": "https://docs.wispforest.io",
"includeParagraphs": false
}
}
There are two built-in wiki source types in Limelight, though you can always add your own:
- MediaWiki (
limelight:media_wiki
)
The wiki software used by Wikipedia and the Minecraft Wiki. - MkDocs (
limelight:mkdocs
)
The static site generator used by the Wisp Forest Docs.
Last update:
2024-08-30