I have a document used for generating a PDF from some user input.
Something like:
Here is the user's message: #sys.inputs.at("message")
This works fine except when the user’s message contains a very long word such as 1000 A
’s:
typst compile test.typ --input message="$(python -c 'print("A" * 1000)')"
Is there a way to get typst to automatically insert line breaks when a single word is longer than the current line?