You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1063,6 +1063,31 @@ the lines being wrapped would probably be significantly longer than this.
1063
1063
1064
1064
```
1065
1065
1066
+
Text is preferably wrapped on whitespaces and right after the hyphens in hyphenated words.
1067
+
1068
+
break_long_words (default: True) If true, then words longer than width will be broken in order to ensure that no lines are longer than width.
1069
+
If it is false, long words will not be broken, and some lines may be longer than width.
1070
+
(Long words will be put on a line by themselves, in order to minimize the amount by which width is exceeded.)
1071
+
1072
+
break_on_hyphens (default: True) If true, wrapping will occur preferably on whitespaces and right after hyphens in compound words, as it is customary in English.
1073
+
If false, only whitespaces will be considered as potentially good places for line breaks.
0 commit comments