bjeanes (owner)

Revisions

gist: 140067 Download_button fork
public
Public Clone URL: git://gist.github.com/140067.git
Embed All Files: show embed
RedCloth-4.1.1.rb #
1
2
3
4
5
6
7
8
irb(main):001:0> gem 'RedCloth', '= 4.1.1'
=> true
irb(main):002:0> require 'RedCloth'
=> true
irb(main):003:0> RedCloth::VERSION
=> 4.1.1
irb(main):004:0> RedCloth.new("@[Ruby]I::am(:some => 'ruby')@").to_html
=> "<p><code lang=\"Ruby\">I::am(:some =&gt; 'ruby')</code></p>"
RedCloth-4.2.2.rb #
1
2
3
4
5
6
7
8
irb(main):001:0> gem 'RedCloth', '= 4.2.2'
=> true
irb(main):002:0> require 'RedCloth'
=> true
irb(main):003:0> RedCloth::VERSION
=> 4.2.2
irb(main):004:0> RedCloth.new("@[Ruby]I::am(:some => 'ruby')@").to_html
=> "<p><code>[Ruby]I::am(:some =&gt; 'ruby')</code></p>"