Jump to content

Template:Content Patcher example/doc: Difference between revisions

From HourGlass: The Game Wiki
https://hourglassachives.wikioasis.org/wiki/Main_Page>Pathoschild
rewrite to use <nowiki> consistently (to avoid confusion if someone edits an example later to use tokens)
 
PolyFox (talk | contribs)
m 1 revision imported
 
(No difference)

Latest revision as of 19:06, April 5, 2025

Description[edit]

This template outputs an example Content Patcher content.json structure with the latest Format version.

Usage[edit]

Just call the template with the top-level Content Patcher fields you want to display (except Format). These should be indented once with four spaces.

For example, this template usage:

{{Content Patcher example|<nowiki>
    "Changes": [
        {
            "Action": "EditData",
            "Target": "Data/animationDescriptions",
            "Entries": {
                "pufferbob_sleep": "50/50/50"
            }
        }
    ]
</nowiki>}}

Will produce this code example:

{
    "Format": "2.5.0",
    "Changes": [
        {
            "Action": "EditData",
            "Target": "Data/animationDescriptions",
            "Entries": {
                "pufferbob_sleep": "50/50/50"
            }
        }
    ]
}

Escape MediaWiki syntax[edit]

Note that the example above includes <nowiki>. That just prevents MediaWiki from mangling the code if it has wiki syntax like {{ (which is common in Content Patcher examples).

Cookies help us deliver our services. By using our services, you agree to our use of cookies.