wiki2xhtml 3.3.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News wiki2xhtml 3.3.1 (Default branch)
# 1  
Old 10-08-2008
wiki2xhtml 3.3.1 (Default branch)

Image wiki2xhtml can create complete Web pages and uses a clean XHTML syntax. It can insert galleries, a menu, a footer, and nearly all elements you know from the Wikipedia. The pages are formatted with CSS. All designs can be adjusted by hand, and custom ones can be used as well. wiki2xhtml generates the HTML pages from simple text files in the MediaWiki syntax. You can also use own (X)HTML code or other script languages inside; there are no restrictions. The GUI is composed of a Code Paste Window where you can insert wiki code that will be generated live. A click into the result, the XHTML code, copies it into the clipboard. License: GNU General Public License (GPL) Changes:
Two bugs have been fixed: HTML comments work again, and the negating argument for settings is always ":false". Image

Image

More...
Login or Register to Ask a Question

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

NAME
CSS::Adaptor - Arbitrarily map CSS data for use in another context. SYNOPSIS
use CSS; # create a CSS object with an adaptor my $css = new CSS({ 'adaptor' => 'CSS::Adaptor', }); # load some CSS data $css->read_file( "my_file.css" ); # change the adaptor $css->set_adaptor( "CSS::Adaptor::Pretty" ); # output CSS object using the current adaptor print $css->output(); DESCRIPTION
This class is used by CSS to translate a CSS object to a string. This allows CSS data to be easily mapped into other formats. This documentation is for people who want to write their own CSS::Adaptor module. For usage information, see the documentation for CSS. METHODS
CONSTRUCTOR "new()" Called without options. FUNCTIONS "output_rule( $rule )" returns a string containing a formatted CSS::Style object, passed as an object ref "output_selectors( $selectors )" returns a string containing a formatted list of CSS::Selector objects, passed as an array ref "output_properties( $properties )" returns a string containing a formatted list of CSS::Property objects, passed as an array ref "output_values( $values )" returns a string containing a formatted list of CSS::Value objects, passed as an array ref AUTHORS
Copyright (C) 2001-2002, Allen Day <allenday@ucla.edu> Copyright (C) 2003-2004, Cal Henderson <cal@iamcal.com> SEE ALSO
CSS perl v5.14.2 2008-04-23 CSS::Adaptor(3pm)