<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,7 +4,7 @@
 
 == DESCRIPTION:
 
-Have designated posts act like the &quot;Linked List&quot; posts on Daring Fireball (http://daringfireball.net). Set the custom field &quot;linked_list_url&quot; to any desired destination on a post. The permalink then becomes that destination. Affects both templates and RSS feeds.
+Have designated posts act like the &quot;Linked List&quot; posts on Daring Fireball (http://daringfireball.net). Set the custom field &quot;linked_list_url&quot; to any desired destination on a post. The permalink then becomes that destination. Affects RSS feeds automatically and provides functions you can use in your template to control the layout if the post is a normal post, or a linked-list post&quot;.
 
 == REQUIREMENTS:
 
@@ -15,6 +15,34 @@ Have designated posts act like the &quot;Linked List&quot; posts on Daring Fireball (http:
 * Copy all the files in this repository to a directory in your &quot;wp-content/plugins&quot; directory. (name it something like &quot;linked_list&quot;)
 * Navigate to the plugins page in the backend and click &quot;Activate&quot; to enable it.
 * When adding a link, just create a normal blog post with a description. Add a custom field &quot;linked_list_url&quot; with the desired destination.
+* RSS Feeds will automatically have their link be replaced with the lined_list_url field value.
+* Templates can be changed by using the provided functions to check whether your are rendering a linked list item or not. For example:
+
+   ....the top part of a template....
+   &lt;?php if (have_posts()): ?&gt;
+      &lt;?php while (have_posts()) : the_post(); ?&gt;
+
+        &lt;?php if (is_linked_list()): ?&gt;
+
+          ...other HTML formatting...
+          &lt;a href=&quot;&lt;?php the_linked_list_link()&quot;&gt;This is a linked list link&lt;/a&gt;
+          ...other HTML formatting...
+
+        &lt;?php else: ?&gt;
+
+          ...other HTML formatting...
+          &lt;a href=&quot;&lt;?php the_link()&quot;&gt;This is a normal post link&lt;/a&gt;
+          ...other HTML formatting...
+
+        &lt;?php endif; ?&gt;
+      &lt;?php endwhile; ?&gt;
+    &lt;?php endif; ?&gt;
+    ...the rest of the template...
+
+
+So, basically use the &quot;is_linked_list()&quot; function to check. And then alter your template the way you wish to make it look or act differently.
+
+For more information about customizing wordpress templates, view the &quot;Template Tags&quot; document on the Wordpress Codex (http://codex.wordpress.org/Template_Tags)
 
 == LICENSE:
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 /*
 Plugin Name: Linked List
 Plugin URI: http://wavethenavel.com/projects/wordpress-linked-list-plugin
-Description: Have designated posts act like the &quot;Linked List&quot; posts on Daring Fireball. Set the custom field &quot;linked_list_url&quot; to any desired destination on a post. The permalink then becomes that destination. Affects both templates and RSS feeds.
+Description: Have designated posts act like the &quot;Linked List&quot; posts on Daring Fireball. Set the custom field &quot;linked_list_url&quot; to any desired destination on a post. The permalink then becomes that destination. Affects RSS feeds automatically and provides functions you can use in your template to control the layout if the post is a normal post, or a linked-list post&quot;.
 Author: Jonathan Penn
 Version: 1.0
 Author URI: http://wavethenavel.com</diff>
      <filename>linked_list.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e941cb3b8bd0e624c16b6d7469912c7c24c579c8</id>
    </parent>
  </parents>
  <author>
    <name>Jonathan Penn</name>
    <email>jonathan@wavethenavel.com</email>
  </author>
  <url>http://github.com/jonathanpenn/wordpress-linked-list-plugin/commit/114647f5a902e275f0e63223bbc595d8c150bfee</url>
  <id>114647f5a902e275f0e63223bbc595d8c150bfee</id>
  <committed-date>2009-03-14T05:47:50-07:00</committed-date>
  <authored-date>2009-03-14T05:47:50-07:00</authored-date>
  <message>Fixed documentation.  The description was too ambitious for what I wrote.  It automatically alters RSS feeds, and you are provided a couple wordpress functions to alter your template yourself.</message>
  <tree>a7990c5f19c4a2611d8854896db5605ba85ffc1c</tree>
  <committer>
    <name>Jonathan Penn</name>
    <email>jonathan@wavethenavel.com</email>
  </committer>
</commit>
