diff --git a/README.rdoc b/README.rdoc
index ecc0aff..ab0b265 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -50,6 +50,20 @@ You can optionally define a per tag Atom/RSS feed. In your _config.yml
If your Jekyll permalink configuration is set to something other than :pretty, and you still want to have pretty tag links define the following in your _config.yml:
tag_permalink_style: pretty
+
+=== Generating links to tag pages
+
+The normal Jekyll slugify filter is different than that used by this plugin. Hence, to generate links to tag pages, you probably want to use something like:
+
+ {%- if site.tag_page_dir -%}
+
+ {{ tag }}
+
+ {%- else -%}
+
+ {{ tag }}
+
+ {%- endif -%}
=== Ignoring tags