在查询字符串参数,yaml和i18n中使用撇号编码问题

时间:2013-08-05 17:40:17

标签: ruby sinatra yaml prawn i18n-gem

我在查询字符串中有一个带撇号的参数,已转义:

class_name=John%27s

我的脚本处理它,并将其提供给i18n的YAML文件:

title: "How to sign up for %1's %2 messages:" # %2 == 'John%27s'

但输出为:John's

而不是:John's

我尝试在将查询参数提供给YAML之前解除查询参数,并尝试了许多YAML格式组合,例如!!escape!!html,但它不起作用。

我错过了什么?感谢。

0 个答案:

没有答案