diff options
author | Joey Hess <joey@kitenet.net> | 2007-12-16 16:00:13 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2007-12-16 16:00:13 -0500 |
commit | 9459cc55abf94171b96f72c954032c6383fda0c3 (patch) | |
tree | a0354b95e620fa36d7f9b61d3bd92062da8496be /IkiWiki/Plugin | |
parent | 96817b00326b983299ce701532643f763259af89 (diff) |
* meta: Drop support for "meta link", since supporting this for internal
* map: Don't inline images.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/map.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/map.pm b/IkiWiki/Plugin/map.pm index b08d78d76..5b6af1f36 100644 --- a/IkiWiki/Plugin/map.pm +++ b/IkiWiki/Plugin/map.pm @@ -97,7 +97,9 @@ sub preprocess (@) { #{{{ $dummy=1; $p.="/".shift(@bits); $map .= "<li>" - .htmllink($params{page}, $params{destpage}, $p, class => "mapparent") + .htmllink($params{page}, $params{destpage}, + $p, class => "mapparent", + noimageinline => 1) ."\n"; $openli=1; } @@ -108,7 +110,8 @@ sub preprocess (@) { #{{{ $map .= "</li>\n" if $openli; $map .= "<li>" .htmllink($params{page}, $params{destpage}, - "/".$common_prefix."/".$item, class => "mapitem") + "/".$common_prefix."/".$item, + class => "mapitem", noimageinline => 1) ."\n"; $openli=1; $parent=$item; |