Difference between revisions of "Module:Jf-JSON/doc"

MyWikiBiz, Author Your Legacy — Monday November 03, 2025
Jump to navigationJump to search
(Pywikibot 6.4.0)
 
(No difference)

Latest revision as of 23:28, 15 July 2021

Template:Used in system

This is Jeffrey Friedl's JSON.lua library, copied from http://regex.info/blog/lua/json (source code). It is licensed under CC-BY 3.0.

The suggested loading code of JSON = assert(loadfile "JSON.lua")() will not work in Scribunto. Instead, load the module as follows:

<syntaxhighlight lang="lua"> local JSON = require('Module:jf-JSON') </syntaxhighlight>

You can then use the module as documented in the module comments.