From 34f68d7713ab3dc333f5e56890ff68b7d4ae598e Mon Sep 17 00:00:00 2001
From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Date: Thu, 3 Jul 2025 08:47:43 -0700
Subject: [PATCH] copyedit lists-tables
---
list-table.mdx | 31 ++++++++++++-------------------
1 file changed, 12 insertions(+), 19 deletions(-)
diff --git a/list-table.mdx b/list-table.mdx
index 5de6ff77..7d509da1 100644
--- a/list-table.mdx
+++ b/list-table.mdx
@@ -4,12 +4,13 @@ description: "Display information in lists and tables"
icon: "list"
---
-
## Lists
-### Ordered List
+Lists follow the official [Markdown syntax](https://www.markdownguide.org/basic-syntax/#lists-1).
+
+### Ordered list
-To create an ordered list, add line items with numbers followed by periods
+To create an ordered list, add numbers followed by a period before list items.
1. First item
2. Second item
@@ -23,9 +24,9 @@ To create an ordered list, add line items with numbers followed by periods
4. Fourth item
```
-### Unordered List
+### Unordered list
-To create an unordered list, add dashes (`-`), asterisks (`*`), or plus signs (`+`) in front of line items.
+To create an unordered list, add dashes (`-`), asterisks (`*`), or plus signs (`+`) before list items.
- First item
- Second item
@@ -39,9 +40,9 @@ To create an unordered list, add dashes (`-`), asterisks (`*`), or plus signs (`
- Fourth item
```
-### Nested List
+### Nested list
-Add indents on list items to nest them
+Indent list items to nest them.
- First item
- Second item
@@ -57,26 +58,18 @@ Add indents on list items to nest them
- Third item
```
-
- Lists follow the official [markdown syntax](https://www.markdownguide.org/basic-syntax/#lists-1).
-
-
## Tables
+Tables follow the official [Markdown syntax](https://www.markdownguide.org/extended-syntax/#tables).
+
+To add a table, use three or more hyphens (`---`) to create each column's header, and use pipes (`|`) to separate each column. For compatibility, you should also add a pipe on either end of the row.
+
| Property | Description |
| -------- | ------------------------------------- |
| Name | Full name of user |
| Age | Reported age |
| Joined | Whether the user joined the community |
-### Creating a table
-
-
- The Table component follows the official [markdown syntax](https://www.markdownguide.org/extended-syntax/#tables).
-
-
-To add a table, use three or more hyphens (`---`) to create each column's header, and use pipes (`|`) to separate each column. For compatibility, you should also add a pipe on either end of the row.
-
```mdx
| Property | Description |
| -------- | ------------------------------------- |