Jump to content

Main public logs

Combined display of all available logs of Insurer Brain. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 09:59, 18 September 2025 Wikilah admin talk contribs created page Module:Hatnote (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules....")
  • 09:59, 18 September 2025 Wikilah admin talk contribs created page Module:Format link (Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(...")
  • 09:58, 18 September 2025 Wikilah admin talk contribs created page Module:Hatnote list (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd...")
  • 09:57, 18 September 2025 Wikilah admin talk contribs created page Module:GetParameters (Created page with "local p = {} --[[ Helper function that populates the argument list given that user may need to use a mix of named and unnamed parameters. This is relevant because named parameters are not identical to unnamed parameters due to string trimming, and when dealing with strings we sometimes want to either preserve or remove that whitespace depending on the application. ]] function p.getParameters( frame_args, arg_list ) local new_args = {}; local index = 1; loca...")
  • 09:56, 18 September 2025 Wikilah admin talk contribs created page Module:String2 (Created page with "require ('strict'); local p = {} p.trim = function(frame) return mw.text.trim(frame.args[1] or "") end p.sentence = function (frame) -- {{lc:}} is strip-marker safe, string.lower is not. frame.args[1] = frame:callParserFunction('lc', frame.args[1]) return p.ucfirst(frame) end p.ucfirst = function (frame) local s = frame.args[1]; if not s or '' == s or s:match ('^%s+$') then -- when <s> is nil, empty, or only whitespace return s; -- abando...")
  • 09:55, 18 September 2025 Wikilah admin talk contribs created page Module:Plain text (Created page with "--converts text with wikilinks to plain text, e.g "gah is bar" to "gah is bar" --removes anything enclosed in tags that isn't nested, mediawiki strip markers (references etc), files, italic and bold markup requirestrict local p = {} function p.main(frame) local text = frame.args[1] local encode = require('Module:yesno')(frame.args.encode) return p._main(text, encode) end function p._main(text, encode) if not text then return end text = mw.text.kill...")
  • 09:55, 18 September 2025 Wikilah admin talk contribs created page Template:R/where (Created page with "<!-- Only for internal use: |plural=pages |singular=page |location=in-source-location |spacing=character -->{{#if:{{{plural|}}}|{{{plural|}}}{{#if:{{{singular|}}}|,{{{spacing|}}}[{{{singular|}}}]}}|{{{singular|}}}}}{{#if:{{{location|}}}|{{#if:{{{plural|}}}{{{singular|}}}|,{{{spacing|}}}}}{{{location|}}}}}<noinclude> {{documentation}} </noinclude>")
  • 09:54, 18 September 2025 Wikilah admin talk contribs created page Template:R/superscript (Created page with "<!-- Only for internal use: |wrap=n[o]/y[es]/f[orced] |leadin=value |prefix=value |pp=value |where=value |sup-where=value |quote-where=value |quote=value |language=value |translation=value |suffix=value -->{{#if:{{{where|}}}|<sup class="reference {{#switch:{{{wrap|}}}|f|forced=|no}}wrap">{{#if:{{{quote|}}}|{{{prefix|}}}}}<span title="<!--{{#invoke:String|replace|source={{#invoke:String|replace|source={{#invoke:String|replace|source=-->{{#invoke:DecodeEncode|encode|s={{#i...")
  • 09:54, 18 September 2025 Wikilah admin talk contribs created page Template:Rp (Created page with "{{#if:{{{needed|}}}|{{page needed|date={{{date|}}}|reason={{{reason|}}}}}|{{r/superscript |prefix={{#switch:{{{style|}}}|AMA|Ama|ama=(|: }} |suffix={{#switch:{{{style|}}}|AMA|Ama|ama=)| }} |pp={{#switch:{{{style|}}}|AMA|Ama|ama={{#if:{{{no-pp|{{{nopp|}}}}}}||{{#if:{{{pages|{{{pp|}}}}}}|pp|{{#if:{{{page|{{{p|}}}}}}|p}}}}}}}}<!-- p/pp is only used in superscript label, therefore it does not contain any qp params --> |leadin={{#switch:{{{quotation-pages|{{...")
  • 09:53, 18 September 2025 Wikilah admin talk contribs created page Module:Catalog lookup link (Created page with "--[[ |1=, |2=, |3=, |4=, |5=, |6=, |7=, |8=, |9=: Optional unnamed parameters for 0 to 9 items to be listed. Whitespace is trimmed off both ends and the strings are urlencoded as if they were query strings. |article-link=: Optional Wikipedia article name to link to. |article-name=: Optional alternative text to be displayed for |article-link= link in front of catalog link. If not specified, |article-link= is used for display as well. If both parameters are not specified...")
  • 09:52, 18 September 2025 Wikilah admin talk contribs created page Template:Catalog lookup link (Created page with "{{#invoke:Catalog lookup link|main}}<noinclude> {{documentation}} </noinclude>")
  • 09:52, 18 September 2025 Wikilah admin talk contribs created page Template:ProQuest (Created page with "{{Catalog lookup link|{{{1|}}}|{{{2|}}}|{{{3|}}}|{{{4|}}}|{{{5|}}}|{{{6|}}}|{{{7|}}}|{{{8|}}}|{{{9|}}}|article-link=ProQuest|article-name=ProQuest|link-prefix=https://www.proquest.com/docview/|list-leadout={{{leadout|}}}|url-access1={{{url-access1|{{{url-access|}}}}}}|url-access2={{{url-access2|}}}|url-access3={{{url-access3|}}}|url-access4={{{url-access4|}}}|url-access5={{{url-access5|}}}|url-access6={{{url-access6|}}}|url-access7={{{url-access7|}}}|url-access8={{{url-a...")
  • 09:51, 18 September 2025 Wikilah admin talk contribs created page Module:For (Created page with "local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.getArgs(frame)) end --Implements {{For}} but takes a manual arguments table function p._For (a...")
  • 09:50, 18 September 2025 Wikilah admin talk contribs created page Template:For (Created page with "<includeonly>{{#invoke:For|For}}</includeonly><noinclude> {{Documentation}} </noinclude>")
  • 09:49, 18 September 2025 Wikilah admin talk contribs created page Template:Pp-template (Created page with "<includeonly>{{#invoke:Protection banner|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 09:49, 18 September 2025 Wikilah admin talk contribs created page Template:Fix/category (Created page with "<noinclude>{{pp-template|small=yes}}</noinclude>{{{cat|Category:All pages needing cleanup}}}{{#if:{{{cat-date|}}} |[[{{{cat-date}}} {{#if:{{{date|}}} |from {{{date}}} }}]]{{#if:{{{date|}}} |{{#ifexist:{{{cat-date}}} from {{{date}}}| |Category:Articles with invalid date parameter in template }} }} }}{{#if:{{{cat2|}}}|{{{cat2}}}}}{{#if:{{{cat-date2|}}} |[[{{{cat-date2}}} {{#if:{{{date|}}} |from {{{date}}} }}]]{{#if:{{{date|}}} |{{#ifex...")
  • 09:48, 18 September 2025 Wikilah admin talk contribs created page Template:Doi (Created page with "<includeonly>{{#invoke:CS1 identifiers|main|_template=doi}}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 09:47, 18 September 2025 Wikilah admin talk contribs created page Module:DecodeEncode (Created page with "require('strict') local p = {} local function _getBoolean( boolean_str ) -- from: module:String; adapted -- requires an explicit true local boolean_value if type( boolean_str ) == 'string' then boolean_str = boolean_str:lower() if boolean_str == 'true' or boolean_str == 'yes' or boolean_str == '1' then boolean_value = true else boolean_value = false end elseif type( boolean_str ) == 'boolean' then boolean_value = boolean_str else boolean_value =...")
  • 09:46, 18 September 2025 Wikilah admin talk contribs created page Template:Category handler (Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>")
  • 09:46, 18 September 2025 Wikilah admin talk contribs created page Template:Fix-span (Created page with "{{#if:{{{content|}}}|<span class="{{{span-class|cleanup-needed-content}}}" style="padding-left:0.1em; padding-right:0.1em; color:var(--color-subtle, #54595d); border:1px solid var(--border-color-subtle, #c8ccd1);">{{{content|}}}</span>}}{{#switch:{{{subst|¬}}} |¬={{category handler |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{C...")
  • 09:45, 18 September 2025 Wikilah admin talk contribs created page Template:Clarify (Created page with "{{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= {{Fix-span |link=Wikipedia:Please clarify |text=clarification needed |title={{delink|{{{reason|The text near this tag may need clarification or removal of jargon.}}}}} |date={{{date|}}} |pre-text={{{pre-text|}}} |post-text={{{post-text|}}} |cat-date=Category:Wikipedia articles needing clarification |content={{{text|}}} }} }}<noinclude> {{documentation}} </noinclude>")
  • 09:44, 18 September 2025 Wikilah admin talk contribs created page Module:Delink (Created page with "-- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-...")
  • 09:44, 18 September 2025 Wikilah admin talk contribs created page Template:Delink (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 09:43, 18 September 2025 Wikilah admin talk contribs created page Template:Citation needed (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Unsubst||date=__DATE__ |$B= {{Fix |name = {{{name|Citation needed}}} |link = Wikipedia:Citation needed |text = citation needed |class = Template-Fact |title = {{{reason|This claim needs references to reliable sources.}}} |date = {{{date|}}} |cat = Category:All articles with unsourced statements |cat-date = Category:Articles with unsourced statements }}{{#invoke:Check for unknown paramet...")
  • 09:43, 18 September 2025 Wikilah admin talk contribs created page Template:' (Created page with "<span class="nowrap" style="padding-left:0.1em;">'</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 09:42, 18 September 2025 Wikilah admin talk contribs created page Template:Fix (Created page with "{{#switch:{{{subst|¬}}} |¬={{#invoke:Category handler|main |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{#invoke:Category handler|main |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}}...")
  • 09:41, 18 September 2025 Wikilah admin talk contribs created page Template:Original research inline (Created page with "{{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= <!--{{OR}} begin-->{{Fix | subst = <includeonly>{{subst:substcheck}}</includeonly> | link = Wikipedia:No original research | title = The material near this tag {{#if:{{{certain|}}}||possibly}} contains original research. | text = original research{{ safesubst:<noinclude/>#if:{{{certain|}}}||?}} | date = {{{date|}}} | cat = Category:All articles that may contain original research | cat-date = Category:A...")
  • 09:28, 18 September 2025 Wikilah admin talk contribs created page Template:FULLROOTPAGENAME (Created page with "{{ safesubst:<noinclude/>#if: {{ safesubst:<noinclude/>Ns has subpages | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{ safesubst:<noinclude/>NAMESPACE:{{{1}}}}}|{{ safesubst:<noinclude/>NAMESPACE}}}} }} | {{ safesubst:<noinclude/>#titleparts:{{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}}|1}} | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}} }}<noinclude> {{documentation}} </noinclude>")
  • 09:28, 18 September 2025 Wikilah admin talk contribs created page Template:Dated maintenance category (Created page with "<nowiki/><!--This nowiki helps to prevent whitespace at the top of articles-->{{#ifeq:{{FULLROOTPAGENAME}}|Wikipedia:Template messages|<!--Do not categorize-->|<!-- -->{{#ifexpr:{{#if:{{NAMESPACE}}|0|1}}+{{#ifeq:{{{onlyarticles|no}}}|yes|0|1}} |{{#if:{{{3|}}} |[[Category:{{{1}}} {{{2}}} {{{3}}}]]<!-- -->{{#ifexist:Category:{{{1}}} {{{2}}} {{{3}}} |<!-- -->|Category:Articles with invalid date parameter in template<!-- -->}} |Category:{{#if:{{{5|}}}...")
  • 09:23, 18 September 2025 Wikilah admin talk contribs created page Template:Talk other (Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{TALKSPACE}} | talk | other }} }} | talk = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} </noinclude>")
  • 09:22, 18 September 2025 Wikilah admin talk contribs created page Template:R from template shortcut (Created page with "<noinclude>{{Template:This is a redirect/rcat|from shortcut}} </noinclude>{{#switch:{{#invoke:RedirectData|getRedirectToNamespace}} |Template= {{Redirect template |id=R from template shortcut |name=From a template shortcut |from=a shortcut page name '''in ''any'' namespace''' |to=a page in template namespace |info=**Shortcuts are wikilinked on community pages, talk pages, and edit summaries,...")
  • 09:21, 18 September 2025 Wikilah admin talk contribs created page Template:R from move (Created page with "<noinclude>{{hatnote|This rcat template is automatically added to all new redirects that result from page moves; it must be added manually to older redirects when appropriate.}}{{This is a redirect/rcat}} </noinclude>{{Redirect template |id=R from move |name=From a page move |from=a page that has been moved (renamed) |info=This page was kept as a redirect to avoid breaking links, both internal and external, that may have been made to the old page name. |all cat...")
  • 09:21, 18 September 2025 Wikilah admin talk contribs created page Template:R from modification (Created page with "<noinclude>{{This is a redirect/rcat}} </noinclude>{{Redirect template |id=R from modification |name=From a modification |from=a modification of the target's title or a closely related title. For example, the words may be rearranged{{#if: {{{1|{{{reason|{{{of|}}}}}}}}}|. This redirect is a modification of: {{#ifexpr:{{#invoke:String|find|{{{1|{{{reason|{{{of|}}}}}}}}}|"plainlinks"}} + {{#invoke:String|find|{{{1|{{{reason|{{{of|}}}}}}}}}|{{!((}}}} = 0|{{no redirect...")
  • 09:20, 18 September 2025 Wikilah admin talk contribs created page Template:Dated maintenance category (articles) (Created page with "{{Dated maintenance category |onlyarticles=yes |1={{{1|}}} |2={{{2|}}} |3={{{3|}}} |4={{{4|}}} |5={{{5|}}} }}<noinclude> {{documentation|Template:Dated maintenance category/doc}} </noinclude>")
  • 09:19, 18 September 2025 Wikilah admin talk contribs created page Template:Mbox (Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --> </noinclude>")
  • 09:18, 18 September 2025 Wikilah admin talk contribs created page Template:Redirect category shell (Created page with "__NONEWSECTIONLINK__{{Mbox | name = Redirect category shell | type = move | image = none | style = margin-top: 1.1em; border: solid 1px darkblue; border-left-width: 0.5em; | textstyle = padding-top: 0.9em; padding-bottom: 0.9em; | text = '''This {{Talk other|talk page|page}} is a redirect. <small>The following categories are used to track and monitor this redirect:</small>'''{{#if:{{{h|}}} |{{block indent|1...")
  • 09:18, 18 September 2025 Wikilah admin talk contribs created page Template:DMCA (Redirected page to Template:Dated maintenance category (articles)) Tag: New redirect
  • 09:17, 18 September 2025 Wikilah admin talk contribs created page Template:Use mdy dates (Created page with "{{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= {{DMCA|Use mdy dates|from|{{{date|}}}}}{{#invoke:Check for unknown parameters|check|unknown={{main other|_VALUE_{{PAGENAME}}}}|preview=Page using Template:Use mdy dates with unknown parameter "_VALUE_"|ignoreblank=y| cs1-dates | date }}}}<noinclude>{{Documentation}}</noinclude>")
  • 09:17, 18 September 2025 Wikilah admin talk contribs created page Module:Wikidata/i18n (Created page with "-- Translate and set up for your language -- Please contact ca:Module talk:Wikidata if you need any help local i18n = { ["errors"] = { ["property-not-found"] = "Property not found.", ["qualifier-not-found"] = "Qualifier not found.", }, ["datetime"] = { -- $1 is a placeholder for the actual number ["beforenow"] = "$1 BCE", -- how to format negative numbers for precisions 0 to 5 ["afternow"] = "$1 CE", -- how to format positive numbers for precisions 0...")
  • 09:16, 18 September 2025 Wikilah admin talk contribs created page How to win friends and influence people (1936) – Dale Carnegie (Created page with "{{Short description|Self-help book by Dale Carnegie}} {{for|the Terrorvision album|How to Make Friends and Influence People}} {{Use mdy dates|date=June 2011}} {{Infobox book | name = How to Win Friends and Influence People | image = How-to-win-friends-and-influence-people.jpg | caption = First edition, 11th printing (February 1937) | author = Dale Carnegie | country = United States | language = English...")
  • 09:05, 18 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/COinS (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, remove_wiki_link, strip_apostrophe_markup; -- functions in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[--------------------------< M A K E _ C O I N S _ T I T L E >----------------------------------------...")
  • 08:57, 18 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/Date validation (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local add_prop_cat, is_set, in_array, set_message, substitute, wrap_style; -- imported functions from selected Module:Citation/CS1/Utilities local cfg; -- table of tables imported from selected Module:Citation/CS1/Configuration --[[--------------------------< F I L E - S C O P E D E C L A R A T I O N S >--------------------------------...")
  • 00:40, 18 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/Whitelist (Created page with "--[[--------------------------< S U P P O R T E D P A R A M E T E R S >-------------------------------------- Because a steady-state signal conveys no useful information, whitelist.basic_arguments[] list items can have three values: true - these parameters are valid and supported parameters false - these parameters are deprecated but still supported tracked - these parameters are valid and supported parameters tracked in an eponymous properties category nil - thes...")
  • 00:28, 18 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/styles.css (Created page with "Protection icon the following line controls the page-protection icon in the upper right corner it must remain within this comment {{sandbox other||{{pp-template}}}}: Overrides Some wikis do not override user agent default styles for HTML <cite> and <q>, unlike en.wp. On en.wp, keep these the same as [[MediaWiki:Common.css]]. The word-wrap and :target styles were moved here from Common.css. On en.wp, keep these the same as [[Template:Citation/styles.css]].: ...")
  • 23:51, 17 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/Utilities (Created page with "local z = { error_cats_t = {}; -- for categorizing citations that contain errors error_ids_t = {}; -- list of error identifiers; used to prevent duplication of certain errors; local to this module error_msgs_t = {}; -- sequence table of error messages maint_cats_t = {}; -- for categorizing citations that aren't erroneous per se, but could use a little work prop_cats_t = {}; -- for categorizing cit...")
  • 23:50, 17 September 2025 Wikilah admin talk contribs created page Module:Citation/CS1/Identifiers (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, set_message, select_one, -- functions in Module:Citation/CS1/Utilities substitute, make_wikilink; local z; -- table of tables defined in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[-...")
  • 23:49, 17 September 2025 Wikilah admin talk contribs created page Module:CS1 identifiers (Created page with "require ('strict'); local get_args = require ('Module:Arguments').getArgs; local identifiers = require ('Module:Citation/CS1/Identifiers'); local utilities = require ('Module:Citation/CS1/Utilities'); local has_accept_as_written = utilities.has_accept_as_written; -- import functions from Module:Citation/CS1/Utilities local is_set = utilities.is_set; local make_wikilink = utilities.make_wikilink; local set_message = utilities.set_message; local substitute = utili...")
  • 23:48, 17 September 2025 Wikilah admin talk contribs created page Module:Pagetype/disambiguation (Created page with "-- This page contains a table of all disambiguation templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. return { ["Disambiguation"] = true, ["Begriffsklärung"] = true, ["DAB"] = true, ["Dab"] = true, ["Dab page"] = true, ["Dabpage"] = true, ["Dbig"] = true, ["Dis"] = true, ["Disam"] = true, ["Disamb"] = true, ["Disambig"] =...")
  • 23:48, 17 September 2025 Wikilah admin talk contribs created page Template:ISBN (Created page with "<includeonly>{{#invoke:CS1 identifiers|main|_template=isbn}}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 23:47, 17 September 2025 Wikilah admin talk contribs created page Module:Template wrapper (Created page with "require('strict'); local error_msg = '<span style=\"font-size:100%\" class=\"error\"><code style=\"color:inherit; border:inherit; padding:inherit;\">|_template=</code> missing or empty</span>'; --[[--------------------------< I S _ I N _ T A B L E >-------------------------------------------------------- scan through tbl looking for value; return true if found, false else ]] local function is_in_table (tbl, value) for k, v in pairs (tbl) do if v ==...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)