OT: Avoiding having Hugo breaking down words into the next line

Hello,

I was testing a new blog theme (GitHub - nodejh/hugo-theme-mini: A fast, minimalist and responsive hugo theme for bloggers.) and unfortunately I’m facing an issue, as words that would not fully fit at the end of a line are being broken down in very ugly ways. How can I prevent this? I think this was not happening with my previously, but I’m not entirely sure.

Thanks!

This is not Hugo Issue, this is CSS.

the theme set word-break:break-all on that paragraph p element

set word-break to normal on that element.

More about word-break:

3 Likes