kpumuk / meta-tags

Search Engine Optimization (SEO) for Ruby on Rails applications.
MIT License
2.73k stars 275 forks source link

Introduce a new configuration option 'truncate_on_natural_separator' to change or remove natural separator #283

Closed kpumuk closed 10 months ago

kpumuk commented 10 months ago

With this change a new configuration setting is introduced: truncate_on_natural_separator can be used to change the natural separator from the default value of " " (space character) to another value or nil to disable natural separator. This also allows to use a whitespace regular expression (/\s/), a unicode space (/\p{Space}/).

Closes #281