标签: ruby
我试图在Ruby中这样做,而不是从shell或通过加载器系统。
您可以在ERB中执行ERB.new("<%= 'hello' %>").result(binding) == "hello"
ERB.new("<%= 'hello' %>").result(binding) == "hello"
slim_string = "a href='#' home" html = # ????
答案 0 :(得分:2)
你可以这样做:
Slim::Template.new { "a href='#' home" }.render