2 package IkiWiki::Plugin::toggle;
9 add_underlay("javascript");
10 hook(type => "getsetup", id => "toggle", call => \&getsetup);
11 hook(type => "preprocess", id => "toggle",
12 call => \&preprocess_toggle);
13 hook(type => "preprocess", id => "toggleable",
14 call => \&preprocess_toggleable);
15 hook(type => "format", id => "toggle", call => \&format);
33 # make it a legal html id attribute
34 $id=~s/[^-a-zA-Z0-9.]/-/g;
35 if ($id !~ /^[a-zA-Z]/) {
41 sub preprocess_toggle (@) {
42 my %params=(id => "default", text => "more", @_);
44 my $id=genid($params{page}, $params{id});
45 return "<a class=\"toggle\" href=\"#$id\">$params{text}</a>";
48 sub preprocess_toggleable (@) {
49 my %params=(id => "default", text => "", open => "no", @_);
51 # Preprocess the text to expand any preprocessor directives
53 $params{text}=IkiWiki::preprocess($params{page}, $params{destpage},
54 IkiWiki::filter($params{page}, $params{destpage}, $params{text}));
56 my $id=genid($params{page}, $params{id});
57 my $class=(lc($params{open}) ne "yes") ? "toggleable" : "toggleable-open";
59 # Should really be a postprocessor directive, oh well. Work around
60 # markdown's dislike of markdown inside a <div> with various funky
62 my ($indent)=$params{text}=~/( +)$/;
63 $indent="" unless defined $indent;
64 return "<div class=\"$class\" id=\"$id\"></div>\n\n$params{text}\n$indent<div class=\"toggleableend\"></div>";
70 if ($params{content}=~s!(<div class="toggleable(?:-open)?" id="[^"]+">\s*)</div>!$1!g) {
71 $params{content}=~s/<div class="toggleableend">//g;
72 if (! ($params{content}=~s!^(<body[^>]*>)!$1.include_javascript($params{page})!em)) {
73 # no </body> tag, probably in preview mode
74 $params{content}=include_javascript($params{page}, 1).$params{content};
77 return $params{content};
80 sub include_javascript ($;$) {
84 return '<script src="'.urlto("ikiwiki/ikiwiki.js", $page, $absolute).
85 '" type="text/javascript" charset="utf-8"></script>'."\n".
86 '<script src="'.urlto("ikiwiki/toggle.js", $page, $absolute).
87 '" type="text/javascript" charset="utf-8"></script>';