Skip to content

Instantly share code, notes, and snippets.

@mdeering
Created October 26, 2010 21:58
Show Gist options
  • Save mdeering/647919 to your computer and use it in GitHub Desktop.
Save mdeering/647919 to your computer and use it in GitHub Desktop.
module Admin::SnippetHelper
def render_snippet(snippet_name, args = nil)
RedCloth.new(Liquid::Template.parse(Snippet.find_by_title!(snippet_name).content).render args).to_html.html_safe
rescue ActiveRecord::RecordNotFound => error
error.message.html_safe
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment