Rails 标记/标记或纺织
我想让我的用户可以选择很好地格式化他们的评论。我并不是真的在寻找超级花哨的东西,也许是轻量级的东西。
有大量关于 markup/markdown/texttile 等的信息。在 Rails 中,性能和可用性、与 jquery 的兼容性、安全性是优先考虑的,哪种方式可行?
谢谢
I would like to give my user's the option to nicely format their comments. I am not really looking for something super fancy, perhaps something lightweight.
There is a ton of information about markup/markdown/texttile etc. Which it the way to go in rails, performance and usability, compatibility with jquery, security being the priority?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ruby/Rails 对 Markdown 和 Markdown 都有很好的支持。 Textile,Markdown 的功能比 Textile 少,但对
code
注释的支持更好。 (这是 Stackoverflow 使用的)因此,如果您需要注释中良好的代码支持,请使用 Markdown,如果不需要,请使用 Textile。
Markdown 库
纺织库
Ruby/Rails has good support for both Markdown & Textile, Markdown has less features than Textile but it has better support for
code
comments. (it's what Stackoverflow uses)So if you need good code support in comments, use Markdown, if you don't need that use Textile.
Markdown libraries
Textile library