我正在使用 Action Text 来创建文章并很好地显示它的内容。但是我有一个问题,当我创建我的文章然后显示它显示 HTML 标记的内容时。这里 :
这是我的代码:
文章/show.html.erb :
<%= @article.body %>
应用程序.scss:
@import "trix/dist/trix";
@import "./actiontext.scss";
_form.html.erb:
<%= form_for @article do |f| %>
<%= f.rich_text_area :body, height: "300px", width:"300px" %>
<%= end %>
应用程序.js:
//= require actiontext
require("trix")
require("@rails/actiontext")
动作文本.scss:
.trix-content {
.attachment-gallery {
> action-text-attachment,
> .attachment {
flex: 1 0 33%;
padding: 0 0.5em;
max-width: 33%;
}
&.attachment-gallery--2,
&.attachment-gallery--4 {
> action-text-attachment,
> .attachment {
flex-basis: 50%;
max-width: 50%;
}
}
}
action-text-attachment {
.attachment {
padding: 0 !important;
max-width: 100% !important;
}
}
}
有人知道吗?