User:Egocarib: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
(Rearrange the furniture and add a to-do list)
m (links)
Line 5: Line 5:


===Other Useful Pages===
===Other Useful Pages===
* [[Special:ExpandTemplates]]
* [[Special:ExpandTemplates|Expand Templates]]
* [[Special:CargoTables]]
* [[Special:CargoTables|Cargo Tables]]
* [[Special:Version]]
* [[Special:Version|Version & Extensions]]
 
===CSS===
* [[MediaWiki:Common.css|Common.css]]
* [[MediaWiki:Mobile.css|Mobile.css]]
* [[MediaWiki:Gadget-mobile.css|Gadget-mobile.css]]
* [[MediaWiki:Hydradark.css|Hydradark.css]]
</div>
</div>
{{Qud look
{{Qud look

Revision as of 14:18, 29 August 2019

My Pages

Other Useful Pages

CSS

egocarib

A peculiar contraption.

Also known as exanguination microtubules in some parasangs.

Perfect

Wiki to do list:

  • Revamp the Item infobox.
  • Update the Inventory section of the Character infobox to show PV/Damage.
  • Fix <math> equations so they don't overflow page containers.
  • Improve or create some Modding articles.
  • Eventually migrate Mobile.css styles into Gadget-mobile.css when things feel stable.



Example of how to use the debug console when editing/creating a Module

frame=mw.getCurrentFrame()
frame.args={someArg='this is the argument'}
val = frame.args.someArg
mw.log(val)

<outputs this is the argument>

val2 = frame:preprocess(val)

<expands any templates if they were passed into the argument>

mw.logObject(frame.args)

<shows the full structure of the frames.args object>