X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/27d029113faf479464db289a71b98cbf5e672793..79a3fbb1abccdbc2d6b0d3ea8435fb78b06b0cfb:/IkiWiki/Plugin/embed.pm?ds=sidebyside diff --git a/IkiWiki/Plugin/embed.pm b/IkiWiki/Plugin/embed.pm index 4fc91d978..2a1637392 100644 --- a/IkiWiki/Plugin/embed.pm +++ b/IkiWiki/Plugin/embed.pm @@ -44,9 +44,18 @@ my $safehtml=qr{( my @embedded; sub import { #{{{ + hook(type => "getsetup", id => "embed", call => \&getsetup); hook(type => "filter", id => "embed", call => \&filter); } # }}} +sub getsetup () { #{{{ + return + plugin => { + safe => 1, + rebuild => undef, + }, +} #}}} + sub embed ($) { #{{{ hook(type => "format", id => "embed", call => \&format) unless @embedded; push @embedded, shift;