<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -34,19 +34,19 @@ by setting the bucket name to a domain name.
 I'll show some example code for a model called Document.
 
 Scaffold (command line):
-&lt;code&gt;ruby ./script/generate scaffold Document title:string, original_filename:string, content_type:string
-rake db:migrate&lt;/code&gt;
+ruby ./script/generate scaffold Document title:string, original_filename:string, content_type:string
+rake db:migrate
 
 Model (app/models/document.rb):
-&lt;code&gt;class Document &lt; ActiveRecord::Base
+class Document &lt; ActiveRecord::Base
   s3_storage  :bucket =&gt; 'YOUR_BUCKET_NAME',
               :access_key =&gt; 'YOUR_ACCESS_KEY',
               :secret =&gt; 'YOUR_SECRET_KEY'
-end&lt;/code&gt;
+end
 
 New document (app/views/document/new.html.erb):
 In your view, you'll need to have a form for uploading.
-&lt;code&gt;&lt;% form_tag ({:controller =&gt; 'documents', :action =&gt; 'create'}, {:multipart =&gt; true}) do %&gt;
+&lt;% form_tag ({:controller =&gt; 'documents', :action =&gt; 'create'}, {:multipart =&gt; true}) do %&gt;
   &lt;p&gt;
     &lt;label for=&quot;document_title&quot;&gt;Title&lt;/label&gt;&lt;br /&gt;
     &lt;%= text_field :document, :title %&gt;
@@ -56,16 +56,16 @@ In your view, you'll need to have a form for uploading.
     &lt;%= file_field :document, :file %&gt; &lt;!-- this is the important part --&gt;
   &lt;/p&gt;
   &lt;%= submit_tag &quot;Upload file&quot; %&gt;
-&lt;% end %&gt;&lt;/code&gt;
+&lt;% end %&gt;
 
 List of documents (app/views/document/index.html.erb):
-&lt;code&gt;&lt;ul&gt;
+&lt;ul&gt;
 &lt;% for document in @documents %
   &lt;li&gt;
     &lt;%= link_to document.title, document.s3_path %&gt;
   &lt;/li&gt;
 &lt;% end %&gt;
-&lt;/ul&gt;&lt;/code&gt;
+&lt;/ul&gt;
 
 That's it. Your uploaded files will now be stored in your Amazon S3 bucket.
 Files will be deleted from Amazon S3 when you delete the object as usual in rails.</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>44091c27c1f993af21a2cd2c1c4af6b38d19aee0</id>
    </parent>
  </parents>
  <author>
    <name>David Svensson</name>
    <email>david@standout.se</email>
  </author>
  <url>http://github.com/standout/s3storage/commit/808bd158b6ac3d06db051eec7e0a6f13cb39f848</url>
  <id>808bd158b6ac3d06db051eec7e0a6f13cb39f848</id>
  <committed-date>2008-04-22T13:30:20-07:00</committed-date>
  <authored-date>2008-04-22T13:30:20-07:00</authored-date>
  <message>Removed &lt;code&gt;-blocks from readme.</message>
  <tree>4c8a290d0389b211cbd83c367bb9855ec1cf17b8</tree>
  <committer>
    <name>David Svensson</name>
    <email>david@standout.se</email>
  </committer>
</commit>
