<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -12,6 +12,8 @@ Unlike other inline-doc parsers, PDoc does not rely on the JavaScript source cod
 PDoc depends on Rake, BlueCloth, and treetop, all of which can be obtained through RubyGems:
 
     gem install rake BlueCloth treetop
+    
+As an alternative to BlueCloth, you can use [RDiscount](http://github.com/rtomayko/rdiscount/tree/master &quot;rtomayko's rdiscount at master - GitHub&quot;), which is faster than BlueCloth and compatible with Ruby 1.9.1. PDoc will prefer RDiscount if it is found.
 
 ## Usage
 </diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,11 @@
-require &quot;bluecloth&quot;
+# Prefer RDiscount because BlueCloth is slow and has problems with Ruby 1.9.
+begin
+  require 'rdiscount'
+  BlueCloth = RDiscount
+rescue LoadError =&gt; e
+  require 'bluecloth'
+end
+
 class BlueCloth
   CodeBlockClassNameRegexp = /(?:\s*lang(?:uage)?:\s*(\w+)\s*\n)(.*)/
   def transform_code_blocks( str, rs )</diff>
      <filename>lib/pdoc/generators/html/bluecloth_extension.rb</filename>
    </modified>
    <modified>
      <diff>@@ -39,6 +39,8 @@
 
 &lt;pre&gt;&lt;code&gt;gem install rake BlueCloth treetop&lt;/code&gt;&lt;/pre&gt;
 
+&lt;p&gt;As an alternative to BlueCloth, you can use &lt;a href=&quot;http://github.com/rtomayko/rdiscount/tree/master&quot; title=&quot;rtomayko's rdiscount at master - GitHub&quot;&gt;RDiscount&lt;/a&gt;, which is faster than BlueCloth and compatible with Ruby 1.9.1. PDoc will prefer RDiscount if it is found.&lt;/p&gt;
+
 &lt;h2&gt;Usage&lt;/h2&gt;
 
 &lt;p&gt;For hints on how to run PDoc on the command line, consult the built-in Rake tasks (in &lt;code&gt;Rakefile&lt;/code&gt;) and the &lt;code&gt;PDoc::Runner&lt;/code&gt; class (in &lt;code&gt;lib/pdoc/runner.rb&lt;/code&gt;).&lt;/p&gt;</diff>
      <filename>website/html/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1ecbd6ebd363dac2b4497ee3849d75358160c64b</id>
    </parent>
  </parents>
  <author>
    <name>Andrew Dupont</name>
    <email>prototype@andrewdupont.net</email>
  </author>
  <url>http://github.com/tobie/pdoc/commit/78ee73dfa3693919609f140e8fe02d52ff70e1f6</url>
  <id>78ee73dfa3693919609f140e8fe02d52ff70e1f6</id>
  <committed-date>2009-03-05T15:24:15-08:00</committed-date>
  <authored-date>2009-03-05T15:24:15-08:00</authored-date>
  <message>Prefer RDiscount over BlueCloth.</message>
  <tree>f02042c3d6c59038bd357bdf9caab790c7ba9c39</tree>
  <committer>
    <name>Andrew Dupont</name>
    <email>prototype@andrewdupont.net</email>
  </committer>
</commit>
