Difference between revisions of "Best Practices"

From Grad Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
== Collapsible table ==
 
== Collapsible table ==
 
Below you will find the code required to make a basic table with helpful descriptions informing you what the code on each line does:<br>
 
Below you will find the code required to make a basic table with helpful descriptions informing you what the code on each line does:<br>
<code> {| class="mw-collapsible mw-collapsed" style = "text-align:left;" The "{|" is required to start a table. The next two pieces of code in quotes make the table collapsible and left justify the text.<br>
+
<code> {| class="mw-collapsible mw-collapsed" style = "text-align:left;" <br>
 +
 
 +
The "{|" is required to start a table. The next two pieces of code in quotes make the table collapsible and left justify the text.<br>
 
! Header of table. This is always visible.<br>
 
! Header of table. This is always visible.<br>
 
|- The code in this line generates a new row. You can modify the text of the row by using html code.<br>
 
|- The code in this line generates a new row. You can modify the text of the row by using html code.<br>

Revision as of 13:29, 28 April 2015

This page covers the simplest way to do different things on the Wiki, or why we use one method over another.

Collapsible table

Below you will find the code required to make a basic table with helpful descriptions informing you what the code on each line does:
{| class="mw-collapsible mw-collapsed" style = "text-align:left;"

The "{|" is required to start a table. The next two pieces of code in quotes make the table collapsible and left justify the text.
! Header of table. This is always visible.
|- The code in this line generates a new row. You can modify the text of the row by using html code.
|Text for the row generated by the previous row goes here.
|}
The "|}" closes the table

Alignment

blah

Foundations/Solutions

For every practice exam you will see a foundations collapsible table, solutions collapsible table, and final answer collapsible table.
The Foundations table is for mentioning background material required to understand the solution
The solution is a step by step solution to the problem
The final answer is just the final answer. The idea behind providing just the final answer is for students who just want to know
if they did everything correctly.

Please stick to this format as it will provide with useful information that we can use to improve the wiki.