diff options
author | Jonas Smedegaard <dr@jones.dk> | 2014-12-25 13:59:32 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2014-12-25 13:59:32 +0100 |
commit | 2ca1aa70f5b49aa3eaee998a4d562c5bc37066bd (patch) | |
tree | d8b645898f07c67743697e5e6f821e592a6159c4 /pandoc-filter-iri | |
parent | a8d873cea1672a2341d2f57d4e0057056a5fc983 (diff) |
Add IRI filter to beautify (i.e. canonicalize and internationalize) links (including uglifying workaround to modest URL parsing).
Diffstat (limited to 'pandoc-filter-iri')
-rwxr-xr-x | pandoc-filter-iri | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/pandoc-filter-iri b/pandoc-filter-iri new file mode 100755 index 0000000..94be2e4 --- /dev/null +++ b/pandoc-filter-iri @@ -0,0 +1,41 @@ +#!/usr/bin/perl + +use warnings; +use strict; + +use Pandoc::Filter; +use Pandoc::Elements; + +use URI; +use URI::Find; + +pandoc_filter( + \&link_normalize, +); + +sub link_normalize { + my $self = shift; + return [ Link( + $self->content, + [ pp_uri($self->target->[0]) => '' ] + )] + if ( $self->name eq 'Link' ); + return [ Str pp_string($self->content) ] + if ( $self->name eq 'Str' ); + return; +} + +sub pp_uri { + return URI->new(shift)->canonical->as_string; +} + +sub pp_iri { + return URI->new(shift)->canonical->as_iri; +} + +sub pp_string { + my $string = shift; + my $finder = URI::Find->new( \&pp_iri ); + $finder->find(\$string); + return $string; +} |