<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,10 +1,10 @@
 begin
-  require 'maruku'
+  require 'rdiscount'
 rescue LoadError
   begin
     require 'bluecloth'
   rescue LoadError
-    puts &quot;=&gt; markdown_fu plugin requires BlueCloth or Maruku to be installed.&quot;
+    puts &quot;=&gt; markdown_fu plugin requires BlueCloth or Rdiscount to be installed.&quot;
   end
 end
 
@@ -12,19 +12,19 @@ module MarkdownFu
 
   class &lt;&lt; self
     # Used to transform a string in Markdown format into HTML. It will
-    # try to use the _Maruku_ gem, and, if it is not defined, will fall back to using
+    # try to use the _RDiscount_ gem, and, if it is not defined, will fall back to using
     # the _BlueCloth_ gem.
-    # 
+    #
     # Overwrite this if you wish to do any kind of special processing in your Markdown
     # prior to converting.
-    # 
+    #
     def translate(str)
-      if Object.const_defined?(:Maruku)
-        Maruku.new(str).to_html
+      if Object.const_defined?(:RDiscount)
+        Rdiscount.new(str).to_html
       elsif Object.const_defined?(:BlueCloth)
         BlueCloth.new(str).to_html
       else
-        raise &quot;markdown_fu plugin requires BlueCloth or Maruku to be installed.&quot;
+        raise &quot;markdown_fu plugin requires BlueCloth or RDiscount to be installed.&quot;
       end
     end
   end</diff>
      <filename>lib/markdown_fu.rb</filename>
    </modified>
    <modified>
      <diff>@@ -63,4 +63,4 @@ class MarkdownFuTest &lt; Test::Unit::TestCase
     assert_equal nil, post.generated_comment
   end
 
-end
+end
\ No newline at end of file</diff>
      <filename>test/markdown_fu_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>065718a52e4ac2426c97ed9313019fd852122456</id>
    </parent>
  </parents>
  <author>
    <name>Francesc Esplugas</name>
    <email>fesplugas@intraducibles.net</email>
  </author>
  <url>http://github.com/fesplugas/markdown_fu/commit/1dd676c3153b73eba8255bf673081f3f744c9834</url>
  <id>1dd676c3153b73eba8255bf673081f3f744c9834</id>
  <committed-date>2009-03-21T05:19:58-07:00</committed-date>
  <authored-date>2009-03-21T05:19:58-07:00</authored-date>
  <message>Use RDiscount instead of Maruku.</message>
  <tree>3999c34c348a6b1813524ddf37ab61ffcadf7df0</tree>
  <committer>
    <name>Francesc Esplugas</name>
    <email>fesplugas@intraducibles.net</email>
  </committer>
</commit>
