From 50c079302948888a01481d308bfceb32c8f3d22f Mon Sep 17 00:00:00 2001 From: ToaKraka <67241462+ToaKraka@users.noreply.github.com> Date: Sun, 7 Jan 2024 15:20:05 -0500 Subject: [PATCH] Recommend that users use th elements in table headers https://html.spec.whatwg.org/multipage/tables.html#the-th-element --- files/templates/formatting.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/templates/formatting.html b/files/templates/formatting.html index f6954df19..de3987c8d 100644 --- a/files/templates/formatting.html +++ b/files/templates/formatting.html @@ -344,9 +344,9 @@ line breaks <table> <thead> <tr> - <td>Col 1</td> - <td>Col 2</td> - <td>Col 3</td> + <th>Col 1</th> + <th>Col 2</th> + <th>Col 3</th> </tr> </thead> <tbody> @@ -367,9 +367,9 @@ line breaks
Col 1 | -Col 2 | -Col 3 | +Col 1 | +Col 2 | +Col 3 |
---|