mirror of
https://github.com/TxtDot/dalet.git
synced 2024-11-24 05:46:22 +03:00
doc: change table design add table primary column tag
This commit is contained in:
parent
aacc7e5384
commit
b9beffa965
2 changed files with 61 additions and 25 deletions
28
README.md
28
README.md
|
@ -101,19 +101,23 @@ row: {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# "|" is delimeter for text without tags.
|
# Table has custom format if text used
|
||||||
# Element | Description == tcol: {
|
# +< cells > - primary column
|
||||||
|
# < cells > - secondary column
|
||||||
|
# < Element | Description > - converts to
|
||||||
|
# tcol: {
|
||||||
# Element
|
# Element
|
||||||
# Description
|
# Description
|
||||||
# }
|
# }
|
||||||
table: {
|
table: (
|
||||||
Element | Description
|
+< Element | Description >
|
||||||
h | Heading
|
< h | Heading >
|
||||||
p | Paragraph
|
< p | Paragraph >
|
||||||
img | Image
|
< img | Image >
|
||||||
link | Link
|
< link | Link >
|
||||||
btn | Button
|
< btn | Button >
|
||||||
ul | Unordered list
|
< ul | Unordered list >
|
||||||
br | Line break
|
< br | Line break >
|
||||||
}
|
+< quantity | 7 >
|
||||||
|
)
|
||||||
```
|
```
|
||||||
|
|
|
@ -319,17 +319,17 @@ img[/dalet.png]
|
||||||
## 12. Table
|
## 12. Table
|
||||||
|
|
||||||
| Property | Description |
|
| Property | Description |
|
||||||
| -------- | ----------- |
|
| -------- | --------------------------------- |
|
||||||
| name | table |
|
| name | table |
|
||||||
| id | 12 |
|
| id | 12 |
|
||||||
| body | tcol[] |
|
| body | (tcol or tpcol)[] or table-string |
|
||||||
| argument | no |
|
| argument | no |
|
||||||
|
|
||||||
Creates a table.
|
Creates a table.
|
||||||
|
|
||||||
**Daleth example**:
|
**Daleth example**:
|
||||||
|
|
||||||
```yaml
|
```txt
|
||||||
table: {
|
table: {
|
||||||
Name | Age
|
Name | Age
|
||||||
Elon | 53,
|
Elon | 53,
|
||||||
|
@ -391,3 +391,35 @@ tcol: {
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 14. Table Primary Column
|
||||||
|
|
||||||
|
| Property | Description |
|
||||||
|
| -------- | ----------- |
|
||||||
|
| name | tpcol |
|
||||||
|
| id | 14 |
|
||||||
|
| body | tags |
|
||||||
|
| argument | no |
|
||||||
|
|
||||||
|
Like table column, but with primary background.
|
||||||
|
|
||||||
|
**Daleth example**:
|
||||||
|
|
||||||
|
```txt
|
||||||
|
tpcol: {
|
||||||
|
Name
|
||||||
|
Age
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Daletl example (json5 representation)**:
|
||||||
|
|
||||||
|
```json5
|
||||||
|
[
|
||||||
|
14,
|
||||||
|
[
|
||||||
|
[0, "Name"],
|
||||||
|
[0, "Age"],
|
||||||
|
],
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue