I'm currently trying to truncate any strings greater than 65 characters.
My code is
<title><%= truncate(title.html_safe, length:65) %></title>
It works great for titles longer than 65 characters. But titles that are exactly 65 character still get truncated.
For example:
title:"This post is exactly 65 characters characters characters characte"
shows on page as "This post is exactly 65 characters characters characters chara..."
Should I not be using truncate?