{% capture partial %} bold italic link {% endcapture %}
Created
January 9, 2012 02:22
-
-
Save imathis/1580661 to your computer and use it in GitHub Desktop.
Render Markdown partials in HTML with Octopress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: page | |
-- | |
{% render_partial /path/to/_partial.markdown %}{{ contents | markdownize }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<strong>bold</strong> <em>italic</em> <a href="http://octopress.org">link</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This does not work for me with the latest build of octopress, nor with 2.1. the classical liquid filter
markdownify
also does not work.Is there anything I am missing ?