I’m moving my blog over from Jekyll and trying to include a markdown file inside my /price erb page. Is there any easy way include markdown files as you do partials?
I was trying: price.html.md with: <% wrap_layout :layout do %> markdown here <% end %>
With a price.html.erb : ```<%= include “partials/price.html” %>````
It’s not working. Is there a markdownify for middleman like there is for jekyll does {% markdown samples-5.md %}
?