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:
parent
0c13e2bf97
commit
5161084917
|
@ -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><h1></code></td>
|
||||
<td>#</td>
|
||||
<td>Title of page</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><h2></code></td>
|
||||
<td>##</td>
|
||||
<!-- can use Markdown too; remember blank lines -->
|
||||
<td>
|
||||
|
||||
**Second level headers**
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><h3></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><h1></code></td>
|
||||
<td>#</td>
|
||||
<td>Title of page</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><h2></code></td>
|
||||
<td>##</td>
|
||||
<!-- can use Markdown too; remember blank lines -->
|
||||
<td>
|
||||
|
||||
**Second level headers**
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><h3></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.
|
||||
|
|
Loading…
Reference in New Issue