Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Table in Sugarcube 2?

Hi! I am pretty new to Sugarcube. I want to make a table that compares stats between two objects. Is there a way I can do this? Thanks!!

Comments

  • You may either use HTML tables or SugarCube's wiki tables.

    HTML tables:
    <table>
    	<tr>
    		<td>Row1_Col1</td>
    		<td>Row1_Col2</td>
    	</tr>
    	<tr>
    		<td>Row2_Col1</td>
    		<td>Row2_Col2</td>
    	</tr>
    </table>
    


    Wiki tables:
    |Row1_Col1|Row1_Col2|
    |Row2_Col1|Row2_Col2|
    
    NOTE: In wiki tables, each row must be entirely contained within one line.
  • Thanks so much for answering so fast!
Sign In or Register to comment.