* Fix CamelCase regexp to not break [[FooBar|BazBar]] WikiLinks.
parent
6880b3e5e4
commit
3a2cb0ecff
|
@ -14,7 +14,7 @@ sub filter (@) { #{{{
|
||||||
|
|
||||||
# Make CamelCase links work by promoting them to fullfledged
|
# Make CamelCase links work by promoting them to fullfledged
|
||||||
# WikiLinks. This regexp is based on the one in Text::WikiFormat.
|
# WikiLinks. This regexp is based on the one in Text::WikiFormat.
|
||||||
$params{content}=~s#(?<![["/>=])\b((?:[A-Z][a-z0-9]\w*){2,})#[[$1]]#g;
|
$params{content}=~s#(?<![[|"/>=])\b((?:[A-Z][a-z0-9]\w*){2,})#[[$1]]#g;
|
||||||
|
|
||||||
return $params{content};
|
return $params{content};
|
||||||
} #}}}
|
} #}}}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
ikiwiki (1.10) UNRELEASED; urgency=low
|
ikiwiki (1.10) unstable; urgency=low
|
||||||
|
|
||||||
* Run page through any relevant filters when generating a page preview.
|
* Run page through any relevant filters when generating a page preview.
|
||||||
* Noticed a bug in the wikitext markup plugin -- it made CamelCase links the
|
* Noticed a bug in the wikitext markup plugin -- it made CamelCase links the
|
||||||
default throughout the wiki, not only on wikitext pages. Decided to call
|
default throughout the wiki, not only on wikitext pages. Decided to call
|
||||||
this a feature, and split the camelcase support out into a separate plugin
|
this a feature, and split the camelcase support out into a separate plugin
|
||||||
that is independant of wikitext.
|
that is independant of wikitext.
|
||||||
|
* Fix CamelCase regexp to not break [[FooBar|BazBar]] WikiLinks.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Wed, 26 Jul 2006 17:44:25 -0400
|
-- Joey Hess <joeyh@debian.org> Wed, 26 Jul 2006 18:06:35 -0400
|
||||||
|
|
||||||
ikiwiki (1.9) unstable; urgency=low
|
ikiwiki (1.9) unstable; urgency=low
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue