Module:Jf-JSON/doc
Appearance
| This is a documentation subpage for Module:Jf-JSON. It may contain usage information, categories and other content that is not part of the original module page. |
| This module is being discussed in accordance with Wikipedia's deletion policy. Help reach a consensus at its entry.
Maintenance use only: 1. Edit the TfD log to create the discussion entry. 2. Please consider notifying the author(s) by placing {{subst:TfD notice|Jf-JSON/doc|module=yes}} ~~~~ on their talk page(s). |
| This Lua module is used in MediaWiki:Gadget-libSensitiveIPs.js. Changes to it can cause immediate changes to the Wikipedia user interface. To avoid major disruption, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them. |
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:
local JSON = require('Module:jf-JSON')
You can then use the module as documented in the module comments.