Rails sanitizer:允许样式属性中的某些样式

时间:2016-08-20 18:02:10

标签: html css ruby-on-rails sanitization

我正在使用rails-html-sanitizer,我目前正在将样式属性列入白名单。但是,我只想将某些样式列入白名单。

是否可以指定允许哪些样式?例如,允许以下内容:

if let providerID = FIRAuth.auth()?.currentUser?.providerID {
    switch providerID {
    default:
        print("user is signed in with \(providerID)")
    }
}

在文档中,我看到以下内容,但我认为它与我尝试做的相反:style="text-align: center;"

如果我不能将某些样式列入白名单,我的下一个选择就是将样式附加到某些类。

1 个答案:

答案 0 :(得分:0)

如果您在ActionView清理助手中read the code,您实际上可以看到传递其他选项从未打算过。

因此,无法使用rails helper将某些样式属性列入白名单。