简单 Rails 文本字段格式

发布于 2024-11-29 07:41:09 字数 222 浏览 0 评论 0原文

如何轻松地设置博客文章(在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谜兔 2024-12-06 07:41:09

通过 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.

沐歌 2024-12-06 07:41:09

为什么不使用 Markdown?有很多实现。请参阅这篇文章 - 更好的 ruby​​ markdown 解释器?

Why not use Markdown? There are lots of implementations. Refer to this SO post — Better ruby markdown interpreter?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文