Skip to content

Instantly share code, notes, and snippets.

@astropanic
Created July 23, 2011 16:24
Show Gist options
  • Save astropanic/1101603 to your computer and use it in GitHub Desktop.
Save astropanic/1101603 to your computer and use it in GitHub Desktop.
Extend bb-ruby to understand the [ruby]...[/ruby] tag
#config/initializers/bb-code.rb
module BBRuby
@@tags["Ruby"] = [
/\[ruby\](.*?)\[\/ruby\]/mi,
'<pre class="syntax ruby">\1</pre>',
'Ruby code',
'[ruby]User.last.inspect[/ruby]',
:ruby]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment