docs: add new journal command documentation

Replace the attribute system documentation with new documentation for
the variable system, roll command, link command, and spark command.
This commit is contained in:
2026-07-12 19:09:02 +08:00
parent 894f1735e5
commit dbe2f9d9d8
6 changed files with 328 additions and 319 deletions
+12 -2
View File
@@ -43,9 +43,19 @@ function parseEntry(raw: string): JournalDocEntry | null {
import journalGmRaw from "../doc-entries/journal-gm.md";
import journalPlayerRaw from "../doc-entries/journal-player.md";
import journalStatRaw from "../doc-entries/journal-stat.md";
import journalSetRaw from "../doc-entries/journal-set.md";
import journalRollRaw from "../doc-entries/journal-roll.md";
import journalSparkRaw from "../doc-entries/journal-spark.md";
import journalLinkRaw from "../doc-entries/journal-link.md";
const rawDocuments: string[] = [journalGmRaw, journalPlayerRaw, journalStatRaw];
const rawDocuments: string[] = [
journalGmRaw,
journalPlayerRaw,
journalSetRaw,
journalRollRaw,
journalSparkRaw,
journalLinkRaw,
];
let _entries: JournalDocEntry[] | null = null;