Inappropriate word-wrapping in markdown since !4015
Summary
Since !4015 (merged) word-wrapping in Markdown formatted texts is allowed anywhere in a word without a hyphen, so paragraphs will break down as seen in the attached screenshot.
Steps to reproduce
Look at any forum post with paragraphs containing more than one line.
What is the current bug behavior?
Word-break occurs anywhere in the word, ignoring hyphenation rules, and with no hyphenation character.
What is the expected correct behavior?
As it was before — or better: Hyphenation according to the spelling rules provided for this purpose (if the browser supports this) or only at spaces and explicit separators — and at any point only if a box overflow would occur otherwise and no other separation is possible.
Relevant error messages and/or screenshots
Possible fixes
Modify client/src/components/Markdown/Markdown.vue so that
word-break: normal;
overflow-wrap: break-word;
is used instead of
word-break: break-all;
(appropriate MR !4042 (merged) is already in work and coming soon)
