BlueCloth 2 和 unicode
当最新的 BlueCloth (2.0.11) 在 Ruby 1.9.2 下进行 markdown 处理时,以下 Haml 会导致 Encoding::UndefinedConversionError
:
:markdown
résumé
显然,不起眼的 é 字符足以让 BlueCloth 抛出合身!有解决办法吗?
The following Haml causes to a Encoding::UndefinedConversionError
when the latest BlueCloth (2.0.11) is used for markdown processing under Ruby 1.9.2:
:markdown
résumé
Apparently, the humble é character is enough to make BlueCloth throw a fit! Is there a fix?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,我已经通过安装 Maruku 并使用
:maruku
改为过滤。但这并不是适合每个人的完美解决方案,所以我很想看到更好的答案。For now, I've worked around this by installing Maruku and using the
:maruku
filter instead. But this isn't a perfect solution for everyone, so I'd love to see a better answer.