enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Module:Sports table/Volleyball - Wikipedia

    en.wikipedia.org/wiki/Module:Sports_table/Volleyball

    This style for Lua-based Module:Sports table is meant to build group and league tables for competitions with a volleyball format. Note that this module is used extensively, so test potential changes rigorously in the sandbox and please ensure consensus exists before implementing major changes.

  3. Module:Sports table/WDL - Wikipedia

    en.wikipedia.org/wiki/Module:Sports_table/WDL

    This style for Lua-based Module:Sports table is meant to build group and league tables for competitions with a win-draw-loss format. Note that this module is used extensively, so test potential changes rigorously in the sandbox and please ensure consensus exists before implementing major changes.

  4. Module:Demo - Wikipedia

    en.wikipedia.org/wiki/Module:Demo

    Function get() returns a table containing: source = the source code (without <syntaxhighlight> wrappers, characters substituted with html entities) output = the execution result of the source. frame = the frame from which this template took the parameter. By default, get() takes the first parameter of frame.

  5. Wikipedia : Guide to Scribbling

    en.wikipedia.org/wiki/Wikipedia:Guide_to_Scribbling

    A name in Lua is either an access of a local variable or a table lookup. [3] math.floor is a table lookup (of the string "floor") in the (global) math table, for example. Table lookups are slower, at runtime, than local variable lookups. Table lookups in tables such as the args table with its "specialness" are a lot slower.

  6. Module:Webarchive - Wikipedia

    en.wikipedia.org/wiki/Module:Webarchive

    Page, ' ', i}); end end table.insert (out, displayfield);-- add title, date, page label text table.insert (out, ']');-- close extlink markup table.insert (out, (i == tot and '.' or ', '));-- add terminator end return table.concat (out);-- make a big string and done end end--[[-----< P A R A M E T E R _ N A M E _ X L A T E >-----for ...

  7. Help:Lua for beginners - Wikipedia

    en.wikipedia.org/wiki/Help:Lua_for_beginners

    A table is a sequence, optionally supplemented by named keys: digit["two"]="2". Several table functions like table.concat will only work with the numbered values and ignore named keys. The metatable offers a large, optional set of methods for altering table behavior. For example, you can define a table to be callable like a function.

  8. Wikipedia:Lua/Resources - Wikipedia

    en.wikipedia.org/wiki/Wikipedia:Lua/Resources

    Wikipedia:Lua style guide – standards to improve the readability of code through consistency "What do converted templates look like?" (slideshow) Help:Lua debugging – a how-to guide about debugging Lua modules; Help:Lua for beginners – basic tutorial and pointers; Wikipedia:Lua string functions – string performance considerations and limits

  9. Help:Template - Wikipedia

    en.wikipedia.org/wiki/Help:Template

    You can embed Lua code into templates by employing the {{#invoke:}} functionality of the Scribunto MediaWiki extension. The Lua source code is stored in pages called modules, and templates invoke these individual modules. For example, you can invoke Module:Example with the code {{#invoke:Example|hello}} to print the text "Hello World!".