russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.42k stars 598 forks source link

Feature request: widont capability #573

Open ahmetb opened 4 years ago

ahmetb commented 4 years ago

"Widont" is a common practice in blogging/CMS world that prevents a situation where a line break happened and there's only one world at the end.

For example, a title or paragraph with a line break like this doesn't look good:

Welcome to my really cool
blog!

What widont extensions do is to replace the last space with   (non-breaking space character) so that the last two words will share the same fate:

Welcome to my really
cool blog!

Blackfriday sounds about the right place to implement a functionality like this. Thoughts?