From b0bea08afd3b8b32064bfec7528e47237a86e429 Mon Sep 17 00:00:00 2001 From: GhostMiner <66090703+Ghost-Miner@users.noreply.github.com> Date: Thu, 5 Sep 2024 19:14:44 +0200 Subject: [PATCH] added guidelines for tables --- misc/how-to-contribute.html | 60 +++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/misc/how-to-contribute.html b/misc/how-to-contribute.html index 1c2ac9b1..bd52952f 100644 --- a/misc/how-to-contribute.html +++ b/misc/how-to-contribute.html @@ -423,6 +423,66 @@

Markup (formatting)

+
+
+

Editing guidelines

+
+ +
+

Tables

+ +

Creating tables on the wiki is quite simple, however there are certain requirements to make a table display correctly.

+

Visits Table basics on MDN for more information about tables.

+ + + +

Table elements reference:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Element nameDescription
<table>The main table container
<thead>Table's header section
<tbody>Table's content section
<tr>Table row
<th>Heading cell
<td>Generic cell
+ +
+
+