Rails 和 Markdown 以及编辑器

发布于 2024-10-06 10:30:49 字数 80 浏览 5 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

虫児飞 2024-10-13 10:30:49

大多数所见即所得编辑器应该很容易集成到您的应用程序中,而不需要特定于 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/

肥爪爪 2024-10-13 10:30:49

如果只是解析 Markdown 标记,您可以尝试 RedCarpet gem。

同样根据这个配置示例,只需要添加一个helper在 ./app/helper/application_helper.rb 中:

def markdown(text)
  render_options = {
  # add options here
  renderer = Redcarpet::Render::HTML.new(render_options)

  extensions = {
  # add extensions here
  }
  Redcarpet::Markdown.new(renderer, extensions).render(text).html_safe
end

然后使用以下命令渲染任何文本:
<%= 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:

def markdown(text)
  render_options = {
  # add options here
  renderer = Redcarpet::Render::HTML.new(render_options)

  extensions = {
  # add extensions here
  }
  Redcarpet::Markdown.new(renderer, extensions).render(text).html_safe
end

Then render any text with:
<%= markdown YOURTEXT %>

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