diff options
| author | Martin Haug <mhaug@live.de> | 2024-03-15 15:02:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 14:02:56 +0000 |
| commit | 9bd14514520684955570bc87ef79b7b08b35f7c4 (patch) | |
| tree | 04debccb6d28e83474248433b464fd0431740170 /crates | |
| parent | 1084bce4e8107f8371f2dde013986674659de8a6 (diff) | |
Add a guide for the new tables (#3655)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/typst/src/model/table.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/typst/src/model/table.rs b/crates/typst/src/model/table.rs index 8eaf55a9..1b616a0b 100644 --- a/crates/typst/src/model/table.rs +++ b/crates/typst/src/model/table.rs @@ -24,6 +24,9 @@ use crate::visualize::{Paint, Stroke}; /// /// Tables are used to arrange content in cells. Cells can contain arbitrary /// content, including multiple paragraphs and are specified in row-major order. +/// For a hands-on explanation of all the ways you can use and customize tables +/// in Typst, check out the [table guide]($guides/table-guide). +/// /// Because tables are just grids with different defaults for some cell /// properties (notably `stroke` and `inset`), refer to the [grid /// documentation]($grid) for more information on how to size the table tracks |
