Flowdock
method

code

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: RailsGuides::TextileExtensions

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

These similar methods exist in v6.1.7.7:

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 49
    def code(body)
      body.gsub!(%{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\11>>}) do |m|
        <notextile><div class="code_container"><pre class="brush: #{brush_for($1)}; gutter: false; toolbar: false">#{ERB::Util.h($2).strip}</pre></div></notextile>
      end
    end
Register or log in to add new notes.