man Text::WikiFormat::Blocks () - None. Use Text::WikiFormat as the public interface, unless you want to create your own block type.

SYNOPSIS

None. Use Text::WikiFormat as the public interface, unless you want to create your own block type.

DESCRIPTION

This module merely creates subclasses of Text::WikiFormat::Block, which is the interesting code. A block is a collection of related lines, such as a code block (text to display verbatim in a monospaced font), a header, an unordered list, an ordered list, and a paragraph (text to display in a proportional font).

Every block extends CWText::WikiFormat::Block.

METHODS

The following methods exist: Creates and returns a new block. The valid arguments are: The text of the line found in the block. The arguments captured by the block-identifying regular expression. The level of indentation for the block (usually only useful for list blocks). The tags in effect for the current type of wiki formatting. The options in effect for the current type of wiki formatting. Use the accessors of the same names to retrieve the values of the attributes. Adds a list of lines of text to the current text for the block. This is very useful when you encounter a block and want to merge it with the previous block of the same type Adds further arguments to the block; useful when merging blocks. Returns text formatted appropriately for this block. Blocks don't have to have formatters, but they may. Formats the CW$line using CWText::WikiFormat::format_line(). You can add your own formatter here; this is worth overriding. Merges the current block with CW$next_block (the next block encountered) if they're of the same type and are at the same level. This adds the text and args of CW$next_block to the current block. It's your responsibility to remove CW$next_block from whatever your code iterates over. Returns true if this block should nest (as in lists and unordered lists) for the active wiki formatting. Nests CW$next_block under this block if the both nest and if CW$next_block has a level greater than the current block. This actually adds CW$next_block as a text item within the current block. Beware.

AUTHOR

chromatic, CWchromatic at wgz dot org

BUGS

No known bugs.

COPYRIGHT

Copyright (c) 2005, chromatic. Some rights reserved.

This module is free software; you can use, redistribute, and modify it under the same terms as Perl 5.8.x.