mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
12 lines
421 B
Typst
12 lines
421 B
Typst
// In this bug, the first line of the second paragraph was on its page alone an
|
|
// the rest moved down. The reason was that the second block resulted in
|
|
// overlarge frames because the region wasn't finished properly.
|
|
|
|
---
|
|
#set page(height: 70pt)
|
|
#block[This file tests a bug where an almost empty page occurs.]
|
|
#block[
|
|
The text in this second block was torn apart and split up for
|
|
some reason beyond my knowledge.
|
|
]
|