Skip to content Skip to footer navigation

Widont Modifier

Attempts to prevent widows (a line with a single word) in a string by adding non-breaking spaces between the last two words of each paragraph.

The first parameter controls how many spaces are replaced at the end of each paragraph. It defaults to 1, joining the final two words. A value of 4 joins the final five words.

string: I Just Want Pretty Headlines and Sentences
{{ string | widont }}
{{ string | widont(4) }}
{!! Statamic::modify($string)->widont() !!}
{!! Statamic::modify($string)->widont(4) !!}
I Just Want Pretty Headlines and Sentences
I Just Want Pretty Headlines and Sentences