aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-23 03:25:40 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-23 03:25:40 +0000
commit78b279c3d8c803391a5a4fc59ffd7855ce8bc5f5 (patch)
tree10b1cbd54390a65553eca39aa8e88f6c181dfad0 /IkiWiki/Render.pm
parent63c79e7f5b87003cd02158b4d9f723b4c054cacf (diff)
downloadikiwiki-78b279c3d8c803391a5a4fc59ffd7855ce8bc5f5.tar
ikiwiki-78b279c3d8c803391a5a4fc59ffd7855ce8bc5f5.tar.gz
* Allow preprocessor directives to span multiple lines, both to make
long ones with lots of values easier to write, and to allow for ones with multi-line quoted values.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r--IkiWiki/Render.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm
index ddd146922..8657dc380 100644
--- a/IkiWiki/Render.pm
+++ b/IkiWiki/Render.pm
@@ -123,7 +123,7 @@ sub preprocess ($$$;$) { #{{{
}
};
- $content =~ s{(\\?)$config{wiki_processor_regexp}}{$handle->($1, $2, $3)}eg;
+ $content =~ s{(\\?)\[\[(\w+)\s+((?:(?:\w+=)?(?:"[^"]+"|[^\s\]]+)\s*)*)\]\]}{$handle->($1, $2, $3)}eg;
return $content;
} #}}}