The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

IkiWiki::Plugin::syntax::CSS - Cascade Style Sheet library tags

VERSION

This documentation refers to IkiWiki::Plugin::syntax::CSS version 0.1

SYNOPSIS

    package IkiWiki::Plugin::syntax::base;

    use IkiWiki::Plugin::syntax::CSS;

    ...

    1;

DESCRIPTION

This package adds methods for build valid CSS expressions using neutral names.

SUBROUTINES/METHODS

css( )

    $self->css('title',q(This is the syntax paragraph title));

    $self->css('mySpecialCSStag',q(special paragraph));

This method take a tag name and a scalar text and builds a valid CSS text for inclusion in HTML files.

If the tag name don't exists in the internal table, the method take his value as literal.

css_pair( )

    my ($begin_css, $end_css) = $self->css_pair('content');

This method returns two CSS sequences, the begining and the ending, using the parameter received as the class name.

match_css( )

    if ($self->match_css( 'title', $my_html_text)) {
        # the text contains the CSS sequences on title class.
        1;
    }

This method looks for an expression CSS within a text.

regex_match_css( )

    if ($text =~ $self->regex_match_css( 'title' )) {
        1;
    }

This method build a regular expression for matches a CSS opening and closing expression.

DIAGNOSTICS

This module don't raise any exception.

BUGS AND LIMITATIONS

There are no known bugs in this module. Please report problems to the author. Patches are welcome.

AUTHOR

Víctor Moral <victor@taquiones.net>

LICENSE AND COPYRIGHT

Copyright (c) 2008 "Víctor Moral" <victor@taquiones.net>

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 US

1 POD Error

The following errors were encountered while parsing the POD:

Around line 152:

Non-ASCII character seen before =encoding in 'Víctor'. Assuming UTF-8