diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-07-04 12:57:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-04 10:57:40 +0000 |
| commit | 0ef672c347f368325313c8bccc4f70e3f1016b0a (patch) | |
| tree | 8971d6b305d805b42b55e1e85613e4f4c5ba175d /tests/suite/model | |
| parent | 75246f930b9041c206a8a3c87e6db03bfc9111fd (diff) | |
Refactor line building (#4497)
Diffstat (limited to 'tests/suite/model')
| -rw-r--r-- | tests/suite/model/par.typ | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/suite/model/par.typ b/tests/suite/model/par.typ index f07c4c6c..80bc9f3e 100644 --- a/tests/suite/model/par.typ +++ b/tests/suite/model/par.typ @@ -78,3 +78,22 @@ Welcome \ here. Does this work well? #set text(dir: rtl) لآن وقد أظلم الليل وبدأت النجوم تنضخ وجه الطبيعة التي أعْيَتْ من طول ما انبعثت في النهار + +--- par-trailing-whitespace --- +// Ensure that trailing whitespace layouts as intended. +#box(fill: aqua, " ") + +--- par-empty-metadata --- +// Check that metadata still works in a zero length paragraph. +#block(height: 0pt)[#""#metadata(false)<hi>] +#context test(query(<hi>).first().value, false) + +--- par-metadata-after-trimmed-space --- +// Ensure that metadata doesn't prevent trailing spaces from being trimmed. +#set par(justify: true, linebreaks: "simple") +#set text(hyphenate: false) +Lorem ipsum dolor #metadata(none) nonumy eirmod tempor. + +--- issue-4278-par-trim-before-equation --- +#set par(justify: true) +#lorem(6) aa $a = c + b$ |
