Created
April 27, 2010 22:26
-
-
Save defunkt/381430 to your computer and use it in GitHub Desktop.
Mustache Markdown Helper
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
class MyView < Mustache | |
def markdown(str = nil) | |
if str | |
Markdown.new(str.to_s).to_html | |
else | |
lambda { |text| markdown(render(text)) } | |
end | |
end | |
end |
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
<div class="column main"> | |
{{# markdown}} | |
{{{ description }}} | |
{{/ markdown}} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment