Rails 和 Markdown 以及编辑器
Mark down 编辑器是否已移植到 Rails 应用程序? (与此 SO 中使用的相同)
解析 Markdown 标记怎么样?
Has the mark down editor been ported to a rails app? (the same one used on this SO)
What about parsing the markdown markup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大多数所见即所得编辑器应该很容易集成到您的应用程序中,而不需要特定于 Rails 的 gem/插件。这是一个支持 Markdown 的编辑器:
http://livepipe.net/control/textarea
您也可以尝试 WYSIHAT如果您不介意花一些精力来自定义编辑器:
https://github.com/37signals/wysihat< /a>
http://www.80beans.com /blog/development/2009/10/01/introducing-wysihat-engine/
Most WYSIWYG editors should be pretty easy to integrate into your app without the need for Rails-specific gems/plugins. Here's an editor that supports Markdown:
http://livepipe.net/control/textarea
You could also try WYSIHAT if you don't mind putting a little work into customizing your editor:
https://github.com/37signals/wysihat
http://www.80beans.com/blog/development/2009/10/01/introducing-wysihat-engine/
如果只是解析 Markdown 标记,您可以尝试 RedCarpet gem。
同样根据这个配置示例,只需要添加一个helper在 ./app/helper/application_helper.rb 中:
然后使用以下命令渲染任何文本:
<%= markdown YOURTEXT %>
For just parsing the markdown markup, you can try RedCarpet gem.
Also according to this configuration example, just need to add a helper in ./app/helper/application_helper.rb like:
Then render any text with:
<%= markdown YOURTEXT %>