从字符串编译slim到html?

时间:2017-03-16 22:29:01

标签: ruby

我试图在Ruby中这样做,而不是从shell或通过加载器系统。

您可以在ERB中执行ERB.new("<%= 'hello' %>").result(binding) == "hello"

的操作
slim_string = "a href='#' home"
html = # ????

1 个答案:

答案 0 :(得分:2)

你可以这样做:

Slim::Template.new { "a href='#' home" }.render