User contributions for NeonWabbit
A user with 932 edits. Account created on 19 May 2024.
12 November 2024
- 13:4913:49, 12 November 2024 diff hist +131 Module:Citation/CS1 No edit summary Tag: Reverted
- 13:4113:41, 12 November 2024 diff hist +179 Module:Citation/CS1 No edit summary Tag: Reverted
- 13:3213:32, 12 November 2024 diff hist +281 Module:Citation/CS1 No edit summary Tag: Reverted
7 November 2024
- 02:0202:02, 7 November 2024 diff hist −6 Sue →Gallery
- 02:0102:01, 7 November 2024 diff hist +6,484 N 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(..." current
- 02:0002:00, 7 November 2024 diff hist +7,325 N 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..." current
- 01:5901:59, 7 November 2024 diff hist +1,346 N 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..." current
- 01:5901:59, 7 November 2024 diff hist +46 N Template:For Created page with "<includeonly>{{#invoke:For|For}}</includeonly>" current
3 November 2024
- 06:2006:20, 3 November 2024 diff hist −153 Lucy's house No edit summary
- 05:2305:23, 3 November 2024 diff hist −1 Lucy's house No edit summary
- 04:3404:34, 3 November 2024 diff hist +24 Lucy's house No edit summary
- 04:3304:33, 3 November 2024 diff hist +1,003 N Lucy's house Created page with "{{Infobox location | name = | image = Location_Lucy'sHouse_Interior.png | caption = '''Top:''' Lucy's lounge<br>'''Bottom:''' Lucy's guest room | source = | alt_name = | first = Simple Pleasures, [https://bittersweetcandybowl.com/c1/p1 page 1] | located_in = Roseville, USA | locations = Lucy's lounge, Lucy's room, Lucy's guest room | characters = Lucy, Augustus }} '''Lucy's house''' is a house in Roseville where Augustus lives in the basement...."
- 04:1904:19, 3 November 2024 diff hist 0 N File:Location Lucy'sHouse Interior.png No edit summary current
- 03:3303:33, 3 November 2024 diff hist −318 Template:Infobox fictional location No edit summary current
2 November 2024
- 07:3707:37, 2 November 2024 diff hist −616 Template:Infobox character No edit summary
- 07:1807:18, 2 November 2024 diff hist 0 Template:Infobox character No edit summary
- 07:1507:15, 2 November 2024 diff hist −3 Sue No edit summary
- 07:0007:00, 2 November 2024 diff hist +7 Sue No edit summary
- 06:4606:46, 2 November 2024 diff hist −3 Module:If preview No edit summary current Tag: Manual revert
- 06:4506:45, 2 November 2024 diff hist +3 Module:If preview No edit summary Tag: Reverted
- 06:4406:44, 2 November 2024 diff hist −418 Module:If empty No edit summary current Tag: Manual revert
- 06:4406:44, 2 November 2024 diff hist +630 Module:If preview No edit summary
- 06:4306:43, 2 November 2024 diff hist +418 Module:If empty No edit summary Tag: Reverted
- 06:4106:41, 2 November 2024 diff hist +14 Module:If preview No edit summary
- 06:4006:40, 2 November 2024 diff hist +8 Module:If preview No edit summary
- 06:4006:40, 2 November 2024 diff hist −1,973 Module:If preview Blanked the page Tag: Blanking
- 06:3906:39, 2 November 2024 diff hist +329 N Module:If preview/styles.css Created page with "→{{pp|small=yes}}: .preview-warning { font-style: italic; →@noflip: padding-left: 1.6em; margin-bottom: 0.5em; color: red; } →The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .preview-warning + link + .preview-warning { margin-top: -0.5em; }" current
- 06:3906:39, 2 November 2024 diff hist +842 N Module:If preview/configuration Created page with "--We perform the actual check for whether this is a preview here since preprocessing is relatively expensive. local frame = mw.getCurrentFrame() local function is_preview() local revision_id = frame:preprocess('{{REVISIONID}}') -- {{REVISIONID}} is usually the empty string when previewed. -- I don't know why we're checking for nil but hey, maybe someday things -- would have broken return revision_id == nil or revision_id == '' end local function templatestyl..." current
- 06:3806:38, 2 November 2024 diff hist +1,973 N Module:If preview Created page with "local p = {} local getArgs = require("Module:Arguments").getArgs local yn = require("Module:Yesno") local cfg = mw.loadData('Module:If preview/configuration') --main This function returns either the first argument or second argument passed to this module, depending on whether the page is being previewed. function p.main(frame) local args = getArgs(frame) if cfg.preview then return args[1] or '' else return args[2] or '' end end --[[ pmain This function..."
- 06:3706:37, 2 November 2024 diff hist +4 Template:Infobox character/styles.css No edit summary current
- 06:3606:36, 2 November 2024 diff hist −1,138 Template:Infobox character No edit summary
30 October 2024
- 14:1214:12, 30 October 2024 diff hist +11 Sue →Quotes
- 14:1114:11, 30 October 2024 diff hist +191 Sue →Quotes
- 14:0914:09, 30 October 2024 diff hist +1,403 N Module:Separated entries Created page with "-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". The starting parameter can also be specified. local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HT..." current
- 14:0914:09, 30 October 2024 diff hist +72 N Template:Comma separated entries Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Separated entries|comma}}" current
- 14:0914:09, 30 October 2024 diff hist −15 Template:Blockquote No edit summary current
- 14:0814:08, 30 October 2024 diff hist +301 N Template:Blockquote/styles.css Created page with "→{{pp-template}}: .templatequote { overflow: hidden; margin: 1em 0; padding: 0 32px; } .templatequotecite { line-height: 1.5em; →@noflip: text-align: left; margin-top: 0; } @media (min-width: 500px) { .templatequotecite { →@noflip: padding-left: 1.6em; } }" current
- 14:0814:08, 30 October 2024 diff hist +1,551 N Template:Blockquote Created page with "<templatestyles src="Template:Blockquote/styles.css" /><!-- --><blockquote class="templatequote {{{class|}}}" {{#if:{{{style|}}}|style="{{{style}}}"}}>{{{text|{{{content|{{{quotetext|{{{quote|{{{1|<includeonly>{{error|Error: No text given for quotation (or equals sign used in the actual argument to an unnamed parameter)}}{{main other|Category:Pages incorrectly using the quote template}}</includeonly><noinclude>{{lorem ipsum}}</noinclude>}}}}}}}}}}}}}}}{{#if:{{{sign|}..."
- 14:0514:05, 30 October 2024 diff hist +44 Sue →See also
- 14:0314:03, 30 October 2024 diff hist +16 Sue No edit summary
- 14:0214:02, 30 October 2024 diff hist +447 Sue No edit summary
- 13:4713:47, 30 October 2024 diff hist +59 Sue No edit summary
- 13:4113:41, 30 October 2024 diff hist +54 Template:Infobox character No edit summary
- 13:3513:35, 30 October 2024 diff hist +262 N Template:Plainlist Created page with "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> </noinclude>" current
- 03:0703:07, 30 October 2024 diff hist +349 Sue No edit summary
- 02:5802:58, 30 October 2024 diff hist +218 N Template:Plainlist/styles.css Created page with "→{{pp-template|small=yes}}: .plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; →Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }" current
- 02:5302:53, 30 October 2024 diff hist 0 N File:Character Sue.png No edit summary current
- 02:5202:52, 30 October 2024 diff hist +451 N Template:Infobox character/styles.css Created page with ".ib-character { border-spacing: 2px 5px; } .ib-character .infobox-above, .ib-character .infobox-header { background-color: #DEDEE2; } →light background for transparent images: .ib-character .infobox-image img { background-color: #f8f9fa; } @media screen { html.skin-theme-clientpref-night .ib-character .infobox-above, html.skin-theme-clientpref-night .ib-character .infobox-header { background: hsl(240, 6%, 20%); color: inherit; } }"
- 02:5102:51, 30 October 2024 diff hist −1,402 Template:Infobox character No edit summary
- 02:2702:27, 30 October 2024 diff hist −108 Template:Infobox Other chapter No edit summary current