summaryrefslogtreecommitdiff
path: root/IkiWiki.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-24 16:50:49 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-24 16:50:49 +0000
commitb86f9b8409bb55162dfc7d4d13ea3ee577cce525 (patch)
tree33e07f224821a2932a626c55048681753ed6df5c /IkiWiki.pm
parent2f705d78c99ac43f22d5f07b511dd46fa80ebe8e (diff)
* Don't allow whitespace in link text in a wikilink. This was still
allowed by the regexp in one case though not documented to work, and was ambiguous with preprocessor directives.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r--IkiWiki.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm
index 0b9790d8a..1c8783187 100644
--- a/IkiWiki.pm
+++ b/IkiWiki.pm
@@ -39,7 +39,7 @@ sub defaultconfig () { #{{{
wiki_link_regexp => qr{
\[\[ # beginning of link
(?:
- ([^\]\|\n]+) # 1: link text
+ ([^\]\|\n\s]+) # 1: link text
\| # followed by '|'
)? # optional