Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我忘记了这个图书馆的名字。但这有点像 Wiki,您如何在文本前面键入某些字符,然后它将使文本变为粗体/斜体/下划线。
我不是在询问 Wiki 的格式化方式,但我知道 Rails 中内置了类似的东西。它在我的舌尖。谢谢。
您在寻找textilize视图助手吗?在你看来,只要说:
textilize
<%= textilize( post.body_text ) %>
RedCloth 做到了这一点。它为您提供纺织标记(这是丹尼尔答案中列出的标记语言之一)。
http://redcloth.org/
其中许多是在 Ruby 中实现的:
轻量级标记语言比较
我喜欢 Markdown,通过RDiscount。