简单 Rails 文本字段格式
如何轻松地设置博客文章(在 Rails 应用程序中)的格式?至少我想在 text
显示为 HTML 时保留回车符。我想理想情况下它会允许粗体、斜体和斜体。缩进。
我知道 CKEditor。我只是担心这可能有点矫枉过正,并且难以快速实施和实施。容易地...
How can I easily allow blog posts (in a Rails app) to be formatted? Minimally I'd like to retain the carriage returns when text
is displayed as HTML. I guess ideally it'd allow for bold, italic & indentation.
I'm aware of CKEditor. I just fear it may be overkill, and difficult to implement quickly & easily...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过
simple_format(@post.description)
换行文本将在文本中显示换行符。对于其他格式,您需要使用 gem RedCloth 或类似工具。wrapping your text by
simple_format(@post.description)
will show line feeds in your text. For additional formatting, you will need to use gem RedCloth or likes.为什么不使用 Markdown?有很多实现。请参阅这篇文章 - 更好的 ruby markdown 解释器?
Why not use Markdown? There are lots of implementations. Refer to this SO post — Better ruby markdown interpreter?