Flowdock
method

code

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: RailsGuides::TextileExtensions
code(body) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/guides/rails_guides/textile_extensions.rb, line 33
    def code(body)
      body.gsub!(%{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\11>>}) do |m|
        es = ERB::Util.h($2)
        css_class = ['erb', 'shell'].include?($1) ? 'html' : $1
        %{<notextile><div class="code_container"><code class="#{css_class}">#{es}</code></div></notextile>}
      end
    end
Register or log in to add new notes.