ruby on rails: text filed formatting

后端 未结 2 599
离开以前
离开以前 2021-01-16 13:38

I tried to copy and past from Word document to text field using Ruby on Rails.

But all formatting( spaces, bold and other) are disappeared on text filed.

I

2条回答
  •  花落未央
    2021-01-16 13:58

    Have a go at wrapping your field in your show.html.erb or wherever you want to display it with simple_format, for example:

    <%= simple_format(@object.description) %>
    

    See http://apidock.com/rails/ActionView/Helpers/TextHelper/simple_format for more info.

提交回复
热议问题