I’m no expert here, but I think the problem is the the output from the safe_parameterize method, which comes from middleman. The documentation says this method is to “Parameterize a string preserving any multibyte characters”. Preserving multibyte characters does not sound like a good thing for generating strings for paths in URLs.
Problem encountered at https://github.com/chriseidhof/pomotv/pull/108#discussion-diff-61190690 which can cause the build to fail when video titles have certain combinations of characters. See discussion there for background.
I’m no expert here, but I think the problem is the the output from the
safe_parameterize
method, which comes from middleman. The documentation says this method is to “Parameterize a string preserving any multibyte characters”. Preserving multibyte characters does not sound like a good thing for generating strings for paths in URLs.