]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/teximg.pm
web commit by http://willu.myopenid.com/: Tested monotone plugin with renames - Ikiwi...
[git.ikiwiki.info.git] / IkiWiki / Plugin / teximg.pm
index 1993249eb3866847d8ddc21c0e567fceeb75f44c..957f71a6e94b20a182c44e74641c7de0a76f3e72 100644 (file)
@@ -7,7 +7,7 @@ use warnings;
 use strict;
 use Digest::MD5 qw(md5_hex);
 use File::Temp qw(tempdir);
-use URI::Escape qw(uri_escape);
+use HTML::Entities;
 use IkiWiki 2.00;
 
 sub import { #{{{
@@ -90,7 +90,7 @@ sub create ($$$) { #{{{
        if (-e "$config{destdir}/$imglink" ||
            gen_image($code, $height, $digest, $teximgdir)) {
                return qq{<img src="$imgurl" alt="}
-                       .(exists $params{alt} ? $params{alt} : uri_escape($code))
+                       .(exists $params->{alt} ? $params->{alt} : encode_entities($code))
                        .qq{" class="teximg" />};
        }
        else {