Difference between revisions of "Template:Collapse/doc"

From Stardew Valley Wiki
Jump to navigation Jump to search
m (Replace deprecated <source> tags with <syntaxhighlight> tags)
 
Line 59: Line 59:
 
}}
 
}}
  
<includeonly>[[Category:Formatting templates]]
+
<includeonly>{{Addlanglinks}}[[Category:Templates]]</includeonly><noinclude>[[Category:Template documentation]]</noinclude>
{{Addlanglinks}}</includeonly>
 
<noinclude>[[Category:Template documentation‎]]</noinclude>
 

Latest revision as of 21:02, 8 January 2023

Description

This template creates a collapsible box for extended content. This should be used sparingly, since it reduces readability.

This template may also be used to hide "spoiler" content.

Basic usage

Default usage

{{collapse
 |content = <syntaxhighlight lang="c#">
Lots of code here
</syntaxhighlight>
}}
Details 
Lots of code here

Named section

{{collapse
 |code
 |content = <syntaxhighlight lang="c#">
Lots of code here
</syntaxhighlight>
}}
code 
Lots of code here

Collapse spoilers

{{collapse
  |Solution
  |content=Solve the puzzle by performing action x during a full moon on the 12th day of any season.
}}
Solution 
Solve the puzzle by performing action x during a full moon on the 12th day of any season.

Advanced usage

Custom styles

{{collapse
  |content = Some example text here.
  |css     = border: 1px solid red; background: #FCC;
}}
Details 
Some example text here.