User:Egocarib: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
m (fix insecure input css issue)
mNo edit summary
Line 41: Line 41:
{{Qud quote
{{Qud quote
|Wiki to do list:
|Wiki to do list:
* Revamp the [[Template:Item|Item]] infobox.
* Add cargo queries to Damage page showing all things that cause certain types of damage (would require storing more data in Cargo that isn't currently)
* Revisit [[Template:Item|Item]] and [[Template:Character|Character]] infoboxes.
* <s>Update the '''Inventory''' section of the [[Template:Character|Character]] infobox to show PV/Damage.</s>
* <s>Update the '''Inventory''' section of the [[Template:Character|Character]] infobox to show PV/Damage.</s>
** Add better hover tooltips to the '''Inventory''' section
** Add better hover tooltips to the '''Inventory''' section

Revision as of 19:28, 10 September 2021

My Pages

Other Useful Pages

CSS

User CSS

JS

User JS

egocarib

A peculiar contraption.

Also known as exsanguination microtubules in some parasangs.

Perfect

Wiki to do list:

  • Add cargo queries to Damage page showing all things that cause certain types of damage (would require storing more data in Cargo that isn't currently)
  • Revisit Item and Character infoboxes.
  • Update the Inventory section of the Character infobox to show PV/Damage.
    • Add better hover tooltips to the Inventory section
  • 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>