Skip to content

Commit 5161084

Browse files
atscottalxhub
authored andcommitted
docs: remove section on tables from docs style guide (angular#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 angular#23978 PR Close angular#42330
1 parent 0c13e2b commit 5161084

File tree

1 file changed

+0
-74
lines changed

1 file changed

+0
-74
lines changed

aio/content/guide/docs-style-guide.md

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,80 +1159,6 @@ Here is the markup for this file tree.
11591159
</div>
11601160
```
11611161

1162-
## Tables
1163-
1164-
Use HTML tables to present tabular data.
1165-
1166-
<table>
1167-
<tr>
1168-
<th>Header Type</th>
1169-
<th>Markdown</th>
1170-
<th>Use</th>
1171-
</tr>
1172-
<tr>
1173-
<td><code>&lt;h1&gt;</code></td>
1174-
<td>#</td>
1175-
<td>Title of page</td>
1176-
</tr>
1177-
<tr>
1178-
<td><code>&lt;h2&gt;</code></td>
1179-
<td>##</td>
1180-
<!-- can use Markdown too; remember blank lines -->
1181-
<td>
1182-
1183-
**Second level headers**
1184-
1185-
</td>
1186-
</tr>
1187-
<tr>
1188-
<td><code>&lt;h3&gt;</code></td>
1189-
<td>###</td>
1190-
<td>
1191-
1192-
**Third level headers**
1193-
1194-
</td>
1195-
</tr>
1196-
</table>
1197-
1198-
The following is the markup for this table:
1199-
1200-
```html
1201-
1202-
<table>
1203-
<tr>
1204-
<th>Header Type</th>
1205-
<th>Markdown</th>
1206-
<th>Use</th>
1207-
</tr>
1208-
<tr>
1209-
<td><code>&lt;h1&gt;</code></td>
1210-
<td>#</td>
1211-
<td>Title of page</td>
1212-
</tr>
1213-
<tr>
1214-
<td><code>&lt;h2&gt;</code></td>
1215-
<td>##</td>
1216-
<!-- can use Markdown too; remember blank lines -->
1217-
<td>
1218-
1219-
**Second level headers**
1220-
1221-
</td>
1222-
</tr>
1223-
<tr>
1224-
<td><code>&lt;h3&gt;</code></td>
1225-
<td>###</td>
1226-
<td>
1227-
1228-
**Third level headers**
1229-
1230-
</td>
1231-
</tr>
1232-
</table>
1233-
1234-
```
1235-
12361162
## Images
12371163

12381164
Store images in the `content/images/guide` directory in a folder with the **same name** as the guide page.

0 commit comments

Comments
 (0)