User:Coincollector/collapsible table 2

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search

After several days going through, I've finally found a shorter way to make collapsible tables, something that this wiki lacked, while many other wikis that I met so far do have. Credits to the user Poke to find out this alternative for Mediawiki-based sites.

Using this function is really, REALLY simpler than the other first I had invented: By just adding said class, the table will turn collapsible, showing a show/hide link on the table. When adding the collapsible attribute to the table, this will be uncollapsed, collapsing then by clicking in the link. On the other hand, adding expandable class, the table will remain collapsed, showing only the header cell when the user have to click the link to show the content. Users can also manipulate what sections can be shown by adding the expandable class to the cell's group, while the table is in collapsible function.

Other Pages to Sneak

Here you go. The first link shows the collapsible function coding. The second link shows a page where establishes such function in the tables when set. Finally, the third link is the history before and after the function's setup.

Usage

  • Note: The table's styles weren't added in the Code column.
Code Result
{| class="mw-collapsible"
! Table title
|-
| Table content
|}
Table title
Table content
{| class="expandable"
! Table title
|-
| Table content
|}
{|class="mw-collapsible" 
! Table title
|- class="mw-collapsible" 
! Subtitle 1
|-
| Content 1
|- class="expandable" 
! Subtitle 2
|-
| Content 2
|}
Table title
Subtitle 1
Content 1
Content 2