Skip to content

Instantly share code, notes, and snippets.

@mrrooijen
Created May 9, 2010 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrrooijen/395190 to your computer and use it in GitHub Desktop.
Save mrrooijen/395190 to your computer and use it in GitHub Desktop.
def coderay(text)
return if text.nil?
text.gsub(/\<code( lang="(.+?)")?\>(.+?)\<\/code\>/m) do
content_tag("notextile", CodeRay.scan($3, $2).div(:css => :class))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment