我必须同时使用parse_markdown和truncate。我的文本是(例如(
"Hi **boys**, I am very happy to be <a href="/here">here<a/> with you. I am so proud of you and your work."
如果我使用
<%= parse_markdown(truncate(@city.last_news.text, length: 30, separator: ' ')).html_safe %>
我看到
Hi **boys**, I am very happy to be <a href="/here">here<a/> with you. I am so proud of you and your work.
带markdown但不带truncate。
如果我使用
<%= truncate(parse_markdown(@city.last_news.text).html_safe, length: 30, separator: ' ') %>
我看到
Hi **boys**, I am very happy to be <a href="/here">here<a/> with yo...
有截断但没有降价。
如何解决?
我使用这个gem截断html。如果你能在今天完成(最近一次提交是5年前的(,这将解决你的一部分问题。我想知道它是否对降价也有用。试试
示例用法:
%p
= truncate_html(document.description, length: 200)