Causes wiki words to be displayed with spaces between capitals.
See also Can IRender Wiki Words Spaced Out?
(none)
Plugin settings are stored as preferences variables.
- One line description, shown in the Text Formatting Rules topic:
- Set SHORTDESCRIPTION = Causes wiki words to be displayed with spaces between capitals.
To install plugin:
- Copy Spaced Out Wiki Words Plugin?.pm to the lib web.
- Create a
Plugin topic in the TWiki web. Copy this text to it.
Search for sub internalLink
Just after:
# Add before WikiWord inside text to prevent double links
$theLinkText =~ s/(\s)([A-Z]+[a-z]+[A-Z])/$1$2/go;
add:
#code added for SpacedWikiWordPlugin
use TWiki::Plugins::SpacedWikiWordPlugin;
$theLinkText = &TWiki::Plugins::SpacedWikiWordPlugin::spacedWikiWord( $theLinkText );
Related Topics: TWiki Preferences, TWiki Plugins, Default Plugin
-- Martin Cleaver? - 27 Feb 2001
|