diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-23 03:25:40 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-23 03:25:40 +0000 |
commit | 78b279c3d8c803391a5a4fc59ffd7855ce8bc5f5 (patch) | |
tree | 10b1cbd54390a65553eca39aa8e88f6c181dfad0 /IkiWiki.pm | |
parent | 63c79e7f5b87003cd02158b4d9f723b4c054cacf (diff) | |
download | ikiwiki-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.pm')
-rw-r--r-- | IkiWiki.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 9556d6ef7..b9ae74f85 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -18,7 +18,6 @@ use vars qw{%config %links %oldlinks %oldpagemtime %pagectime %pagecase sub defaultconfig () { #{{{ wiki_file_prune_regexp => qr{((^|/).svn/|\.\.|^\.|\/\.|\.x?html?$|\.rss$)}, wiki_link_regexp => qr/\[\[(?:([^\]\|]+)\|)?([^\s\]]+)\]\]/, - wiki_processor_regexp => qr/\[\[(\w+)\s+([^\]]*)\]\]/, wiki_file_regexp => qr/(^[-[:alnum:]_.:\/+]+$)/, verbose => 0, syslog => 0, |