doc: fix rename column to row

This commit is contained in:
Artemy Egorov 2024-08-12 20:30:22 +03:00
parent b6f95691b6
commit a9edea3e99
2 changed files with 10 additions and 10 deletions

View file

@ -143,7 +143,7 @@ row [
# +| cells | - primary column # +| cells | - primary column
# | cells | - secondary column # | cells | - secondary column
# | Element | Description | - converts to # | Element | Description | - converts to
# tcol [ # trow [
# Element # Element
# Description # Description
# ] # ]

View file

@ -233,7 +233,7 @@ img "/dalet.png"
| -------- | --------------------------------- | | -------- | --------------------------------- |
| name | table | | name | table |
| id | 12 | | id | 12 |
| body | (tcol or tpcol)[] or table-string | | body | (trow or tprow)[] or table-string |
| argument | no | | argument | no |
Creates a table. Creates a table.
@ -247,41 +247,41 @@ table {
} }
``` ```
## 13. Table Column ## 13. Table Row
| Property | Description | | Property | Description |
| -------- | ----------- | | -------- | ----------- |
| name | tcol | | name | trow |
| id | 13 | | id | 13 |
| body | tags | | body | tags |
| argument | no | | argument | no |
Creates a table column. Creates a table row.
**Daleth example**: **Daleth example**:
```txt ```txt
tcol [ trow [
Name Name
Age Age
] ]
``` ```
## 14. Table Primary Column ## 14. Table Primary Row
| Property | Description | | Property | Description |
| -------- | ----------- | | -------- | ----------- |
| name | tpcol | | name | tprow |
| id | 14 | | id | 14 |
| body | tags | | body | tags |
| argument | no | | argument | no |
Like table column, but with primary background. Like table row, but with primary background.
**Daleth example**: **Daleth example**:
```txt ```txt
tpcol [ tprow [
Name Name
Age Age
] ]