For more information... RTFM!
NAVIGATION
RECENTLY VIEWED
PAGES THAT LINK HERE
ACCOUNT LOGIN

You are not logged in

Powered by Interchange version 5.7.0

lspace_to_nbsp

Replaces leading spaces with HTML " " entities.

Also see the space_to_nbsp filter.

Availability

Availability

This filter was introduced in version 5.5.0, and is therefore not available for use with any earlier Interchange version.

Example

[filter lspace_to_nbsp]   Kevin's cat[/filter]

Results in:

    Kevin's cat

Source code

sub {
    my $str = shift;
    $str =~ s/^( +)/' ' x length($1)/emg;
    return $str;
}

Category:  Filters
Last modified by: Kevin Walsh
Modification date: Monday 26 February 2007 at 11:54 AM (EST)
Home  |  Legal nonsense  |  Privacy policy  |  Contact us