NAME
Plagger::Plugin::Filter::TruePermalink - Normalize permalink using its own plugin files
SYNOPSIS
- module: Filter::TruePermalink
DESCRIPTION
This plugin normalizes permalink using YAML based URL pattern files.
This plugin rewrites permalink attribute of $entry
, while keeping link as is. If $entry
has enclosures, this plugin also tries to rewrite url of them.
CONFIG
- follow_redirect
-
If set to 1, this plugin issues GET request to entry permalinks to see if the server returns 301 or 302 redirect to other URL. Defaults to 1.
PATTERN FILES
You can write your own pattern file using YAML data format. Usable keys are:
-
Your name. (Optional)
- match
-
Regular expression rule to match with entry's link. Rewrites only happen when the URL form matches. You can omit this configuration to apply the rewrite rule to any URLs.
- rewrite
-
Replacement regexp to filter permalink. Permalink is stored in
$_
variable so that you can write:rewrite: s/;jsession_id=\w+//
- query_param
-
URL query parameter to extract normalized permalink.
query_param: destination
See assets/plugins/Filter-TruePermalink
for more examples.
AUTHOR
youpy
Tatsuhiko Miyagawa