<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -63,7 +63,7 @@ To get the videos uploaded by a user you can use the method @uploaded_by@ passin
 
   YouTube.uploaded_by('envyads')
 
-And so on. To see the full list of available methods see the &quot;Wikis&quot;:http://github.com/edgarjs/youtube-model/wikis
+And so on. To see the full list of available methods see the &quot;rdoc&quot;:http://rdoc.info/projects/edgarjs/youtube-model
 
 All methods will return an instance of @Entry@. The @Entry@ object encapsulates information about a video, playlist,
 suscription, contact or other entity. This class is parsed from the @&lt;entry&gt;@ tag of the xml response, wich is the root
@@ -75,7 +75,7 @@ The returned model instance has a main mehod: **videos**, wich is more than an a
 **Example**
 
   &lt;pre&gt;&lt;code&gt;
-  # VideosController
+  #VideosController
   def index
     @youtube = YouTube.find('ruby on rails', :max_results =&gt; 5)
   end
@@ -84,24 +84,26 @@ The returned model instance has a main mehod: **videos**, wich is more than an a
     @video = YouTube.find_by_id(params[:id])
   end
   
-  # app/views/videos/index.html.erb
-  &lt;p&gt;&lt;%= image_tag @youtube.logo %&gt;&lt;/p&gt;
+  #app/views/videos/index.html.erb
+  &lt;%= image_tag @youtube.logo %&gt;
+  
   &lt;h1&gt;&lt;%= @youtube.title %&gt;&lt;/h1&gt;
-  &lt;p&gt;&lt;%= &quot;Displaying #{@youtube.startIndex} - #{@youtube.itemsPerPage} of #{@youtube.totalResults}&quot; %&gt;&lt;/p&gt;
-  &lt;p&gt;&lt;%= link_to 'Upload', youtube_auth_url(new_video_url) %&gt;&lt;/p&gt;
-  &lt;%- for video in @youtube.videos -%&gt;
-    &lt;strong&gt;&lt;%= video.title %&gt;&lt;/strong&gt; &lt;small&gt;in &lt;%= video.group.category %&gt;&lt;/small&gt;
-    by &lt;%= link_to video.author.name, &quot;http://youtube.com/#{video.author.name}&quot; %&gt;&lt;br /&gt;
+  &lt;%= &quot;Displaying #{@youtube.startIndex} - #{@youtube.itemsPerPage} of #{@youtube.totalResults}&quot; %&gt;
+  
+  &lt;%= link_to 'Upload', youtube_auth_url(new_video_url) %&gt;
+  &lt;% for video in @youtube.videos %&gt;
+    &lt;h3&gt;&lt;%= video.title %&gt;&lt;/h3&gt; in &lt;%= video.group.category %&gt;
+    by &lt;%= link_to video.author.name, &quot;http://youtube.com/#{video.author.name}&quot; %&gt;
+    
     &lt;%= simple_format truncate(video.content, :length =&gt; 100) %&gt;
-    &lt;%= link_to image_tag(video.group.thumbnail.first.url, :alt =&gt; video.title), video_path(video.id) %&gt;&lt;br /&gt;
-    &lt;small&gt;&lt;%= link_to 'Watch on youtube', video.link.first.href %&gt;&lt;/small&gt;
-    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
-  &lt;%- end -%&gt;
+    &lt;%= link_to image_tag(video.group.thumbnail.first.url, :alt =&gt; video.title), video_path(video.id) %&gt;
+    &lt;%= link_to 'Watch on youtube', video.link.first.href %&gt;
+  &lt;% end %&gt;
   
-  # app/views/videos/show.html.erb
+  #app/views/videos/show.html.erb
   &lt;h1&gt;&lt;%= @video.title %&gt;&lt;/h1&gt;
-  &lt;em&gt;by &lt;%= link_to @video.author.name, &quot;http://youtube.com/#{@video.author.name}&quot; %&gt;&lt;/em&gt;
-  &lt;p&gt;&lt;%= youtube_embed @video %&gt;&lt;/p&gt;
+  by &lt;%= link_to @video.author.name, &quot;http://youtube.com/#{@video.author.name}&quot; %&gt;
+  &lt;%= youtube_embed @video %&gt;
   &lt;%= link_to 'Back', videos_path %&gt;
   &lt;/code&gt;&lt;/pre&gt;
 
@@ -121,10 +123,10 @@ Upload process has two steps:
 So basically we have two actions in our controller to upload a video. Here's a quick code example:
 
   &lt;pre&gt;&lt;code&gt;
-  # routes.rb
+  #routes.rb
   map.resources :videos, :new =&gt; {:upload =&gt; :post}
   
-  # VideosController
+  #VideosController
   def new
     @categories ||= YouTube.categories_collection
   end
@@ -133,30 +135,33 @@ So basically we have two actions in our controller to upload a video. Here's a q
     @upload_info = YouTube.get_upload_url(params[:video])
   end
   
-  # app/views/videos/new.html.erb
+  #app/views/videos/new.html.erb
   &lt;% form_for 'video', :url =&gt; upload_new_video_path do |f| %&gt;
     &lt;%= f.hidden_field :auth_sub, :value =&gt; params[:token] %&gt;
-    &lt;p&gt;&lt;%= f.label :title %&gt;&lt;br /&gt;
-    &lt;%= f.text_field :title %&gt;&lt;/p&gt;
+    
+    &lt;%= f.label :title %&gt;
+    &lt;%= f.text_field :title %&gt;
   
-    &lt;p&gt;&lt;%= f.label :description %&gt;&lt;br /&gt;
-    &lt;%= f.text_area :description, :rows =&gt; 10 %&gt;&lt;/p&gt;
+    &lt;%= f.label :description %&gt;
+    &lt;%= f.text_area :description, :rows =&gt; 10 %&gt;
   
-    &lt;p&gt;&lt;%= f.label :category %&gt;&lt;br /&gt;
-    &lt;%= f.select :category, @categories %&gt;&lt;/p&gt;
+    &lt;%= f.label :category %&gt;
+    &lt;%= f.select :category, @categories %&gt;
   
-    &lt;p&gt;&lt;%= f.label :keywords %&gt;&lt;br /&gt;
-    &lt;%= f.text_field :keywords %&gt;&lt;/p&gt;
+    &lt;%= f.label :keywords %&gt;
+    &lt;%= f.text_field :keywords %&gt;
   
-    &lt;p&gt;&lt;%= f.submit 'Continue to Step 2' %&gt;&lt;/p&gt;
+    &lt;%= f.submit 'Continue to Step 2' %&gt;
   &lt;% end %&gt;
   
-  # app/views/videos/upload.html.erb
+  #app/views/videos/upload.html.erb
   &lt;% form_tag @upload_info[:url], :multipart =&gt; true do %&gt;
     &lt;%= hidden_field_tag :token, @upload_info[:token] %&gt;
-    &lt;p&gt;&lt;%= label_tag :file %&gt;&lt;br /&gt;
-    &lt;%= file_field_tag :file %&gt;&lt;/p&gt;
-    &lt;p&gt;&lt;%= submit_tag 'Upload video' %&gt;&lt;/p&gt;
+    
+    &lt;%= label_tag :file %&gt;
+    &lt;%= file_field_tag :file %&gt;
+    
+    &lt;%= submit_tag 'Upload video' %&gt;
   &lt;% end %&gt;
   &lt;/code&gt;&lt;/pre&gt;
 </diff>
      <filename>README.textile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>531c98648c104324aeca1f43cc4b1d55f8258452</id>
    </parent>
  </parents>
  <author>
    <name>edgarjs</name>
    <email>edgar.js@gmail.com</email>
  </author>
  <url>http://github.com/edgarjs/youtube-model/commit/330978070456f664f7324041abd6c2c937ad0121</url>
  <id>330978070456f664f7324041abd6c2c937ad0121</id>
  <committed-date>2009-05-08T06:56:49-07:00</committed-date>
  <authored-date>2009-05-08T06:56:49-07:00</authored-date>
  <message>fixing textile in readme</message>
  <tree>48b1da0497fa4e173fef676bdb8549bae90ebad8</tree>
  <committer>
    <name>edgarjs</name>
    <email>edgar.js@gmail.com</email>
  </committer>
</commit>
