Module:inline/documentation

From Laenkea
< Module:inline
Revision as of 21:53, 29 May 2024 by TheNightAvl (talk | contribs) (Created page with "{{documentation subpage}} <pre> local m_inline = require("Module:inline") local term, args = m_inline.parse("hello<key1:value1><key2:value2>") </pre> Yields: <pre> term = "hello" args = {["key1"] = "value1", ["key2"] = "value2"} </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This is the documentation page for Module:inline

Edit-copy green.svg Documentation for Module:inline. [edit]
This page contains usage information, categories, interwiki links and other content describing the module.
local m_inline = require("Module:inline")
local term, args = m_inline.parse("hello<key1:value1><key2:value2>")

Yields:

term = "hello"
args = {["key1"] = "value1", ["key2"] = "value2"}