How can I convert html.slim files to html or html.erb?

后端 未结 4 795
离开以前
离开以前 2021-01-02 07:21

I need to convert the html.slim files in my Ruby on Rails application to html.erb. Is there any easy way to do it? I tried many options listed in Stack Overflow and other si

4条回答
  •  无人及你
    2021-01-02 07:49

    slimrb -e foo.html.slim foo.html.erb
    

    so on my ubuntu/git bash console, this is what is do it , easily

    mike@mike-PORTEGE-Z30t-A:~/workspace/demo$ slimrb -e app/views/layouts/_header.html.slim app/views/layouts/_header.html.erb
    

    and i get my new converted .erb file for .slim file.

提交回复
热议问题