Possible to embed markdown within erb?

↘锁芯ラ 提交于 2019-12-23 18:11:59

问题


If you use haml as rails view template, you can write portion of your page using markdown by using the ":markdown" filter.

Is is possible to do the same using erb?


回答1:


ERB does not have filtering like this built-in. You'll need to directly use a gem that handles it, like RDiscount or the venerable BlueCloth.




回答2:


It's pretty easy to write a method that does it, assuming you're using something like Rails which has #capture, #concat, and #markdown helpers. Here's an example, using Maruku:

def markdown_filter(&block)
  concat(markdown(capture(&block)))
end

Then you can use this as so:

<% markdown_filter do %>
# Title

This is a *paragraph*.

This is **another paragraph**.
<% end %>

There are a few things to note here. First, it's important that all the text in the block have no indentation; you could get around this by figuring out the common indentation of the lines and removing it, but I didn't do that in the example helper above. Second, it uses Rails' #markdown helper, which could easily be implemented in other frameworks as so (replacing Maruku with your Markdown processor of choice):

def markdown(text)
  Maruku.new(text).to_html
end

Rails 3 has removed the #markdown helper, so just add the above code in the appropriate helper, substituting the Markdown processor of your choice.



来源:https://stackoverflow.com/questions/2930825/possible-to-embed-markdown-within-erb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!