StringParser_BBCode 0.3.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News StringParser_BBCode 0.3.3 (Default branch)
# 1  
Old 03-28-2008
StringParser_BBCode 0.3.3 (Default branch)

StringParser_BBCode is a PHP class that parsesBBCodes with a real parser and not just regularexpressions. This ensures that the HTML elementsare correctly nested. It does not define anyspecial codes, but allows the programmer to do soherself. It provides many features, such as theautomatic detection and handling of paragraphs andthe ability to apply different so-called parserfunctions to different portions of the text thatis to be parsed.License: MIT/X Consortium LicenseChanges:
This release fixes regression incontext-insensitive mode.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Pod::PseudoPod::HTML(3pm)				User Contributed Perl Documentation				 Pod::PseudoPod::HTML(3pm)

NAME
Pod::PseudoPod::HTML -- format PseudoPod as HTML SYNOPSIS
use Pod::PseudoPod::HTML; my $parser = Pod::PseudoPod::HTML->new(); ... $parser->parse_file('path/to/file.pod'); DESCRIPTION
This class is a formatter that takes PseudoPod and renders it as wrapped html. This is a subclass of Pod::PseudoPod and inherits all its methods. METHODS
add_body_tags $parser->add_body_tags(1); $parser->parse_file($file); Adds beginning and ending "<html>" and "<body>" tags to the formatted document. add_css_tags $parser->add_css_tags(1); $parser->parse_file($file); Imports a css stylesheet to the html document and adds additional css tags to url, footnote, and sidebar elements for a nicer display. If you don't plan on writing a style.css file (or using the one provided in "examples/"), you probably don't want this option on. SEE ALSO
Pod::PseudoPod, Pod::Simple COPYRIGHT
Copyright (c) 2003-2004 Allison Randal. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. 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. AUTHOR
Allison Randal <allison@perl.org> perl v5.12.4 2011-08-10 Pod::PseudoPod::HTML(3pm)