docs: remove section on tables from docs style guide (#42330)

The approach for tables is more of an ad-hoc determination based on the
complexity of what's in them. If/when we enable formatting of markdown
files, that will also make the markdown format of tables easier to read
and more consistent.

fixes #23978

PR Close #42330
This commit is contained in:
Andrew Scott 2021-05-25 14:27:52 -07:00 committed by Alex Rickabaugh
parent 0c13e2bf97
commit 5161084917
1 changed files with 0 additions and 74 deletions

View File

@ -1159,80 +1159,6 @@ Here is the markup for this file tree.
</div>
```
## Tables
Use HTML tables to present tabular data.
<table>
<tr>
<th>Header Type</th>
<th>Markdown</th>
<th>Use</th>
</tr>
<tr>
<td><code>&lt;h1&gt;</code></td>
<td>#</td>
<td>Title of page</td>
</tr>
<tr>
<td><code>&lt;h2&gt;</code></td>
<td>##</td>
<!-- can use Markdown too; remember blank lines -->
<td>
**Second level headers**
</td>
</tr>
<tr>
<td><code>&lt;h3&gt;</code></td>
<td>###</td>
<td>
**Third level headers**
</td>
</tr>
</table>
The following is the markup for this table:
```html
<table>
<tr>
<th>Header Type</th>
<th>Markdown</th>
<th>Use</th>
</tr>
<tr>
<td><code>&lt;h1&gt;</code></td>
<td>#</td>
<td>Title of page</td>
</tr>
<tr>
<td><code>&lt;h2&gt;</code></td>
<td>##</td>
<!-- can use Markdown too; remember blank lines -->
<td>
**Second level headers**
</td>
</tr>
<tr>
<td><code>&lt;h3&gt;</code></td>
<td>###</td>
<td>
**Third level headers**
</td>
</tr>
</table>
```
## Images
Store images in the `content/images/guide` directory in a folder with the **same name** as the guide page.