NAME

Text::Textile

SYNOPSIS

use Text::Textile qw(textile);

my $text = "Hi there\n\This is my web page\n";
my $html = textile($text);
print $html;

DESCRIPTION

Text::Textile implements the Textile formatting language as outlined at http://www.textism.com/tools/textile/. The actual code was written by Brad Choate (http://www.bradchoate.com/) for his Movable Type plugin (http://www.bradchoate.com/past/mttextile.php). I've stolen the code, thrown away most of the wrapper, and added an exportable function. Not complex stuff.

LICENSE

This software is provided as-is. You may use it for commercial or personal use. If you distribute it, please keep this notice intact.

Textile formatting code copyright (c) 2003 Brad Choate

CREDITS

All the clever things in Text::Textile were written by Brad Choate <http://www.bradchoate.com>. The module wrappers, POD, tests and other misc 'become a module' stuff was slapped on the top by Tom Insam <tom@jerakeen.org>. I asked Brad, he doesn't mind..

BUGS

I need more tests, mostly. The actual implementation I want to touch as little as possible, I feel accuracy to the original more important than fixing rendering weirdness. This attitude may change..