1TEXTILE(1)            User Contributed Perl Documentation           TEXTILE(1)
2
3
4

NAME

6       textile - Translate Textile markup language to HTML
7

SYNOPSIS

9        # translate a text file to HTML, print to screen
10        textile file.txt
11
12        # translate a snippet of text to HTML
13        echo "hi there" | textile
14
15        # translate a text file, output to a file
16        textile -outfile out.html file.txt
17
18        # translate a text file, output to a legal full HTML file
19        # (By default, textile doesn't output <html>, <head> and <body> tags)
20        textile -fullpage -outfile out.html file.txt
21
22        # translate a text file, output to a legal full HTML file, add title
23        # (-title implies -fullpage)
24        textile -title "My <blink>133t</blink> web page" -outfile out.html file.txt
25

DESCRIPTION

27       This program uses Brad Choate's Text::Textile module to convert text in
28       the Textile markup language into HTML. For example, it will convert
29       "_hi_ there" to "<p><em>hi</em> there</p>". Textile (developed by Dean
30       Allen of <http://textism.com> lets you quickly write simple (or not so
31       simple) text that (a) can be read as is, and (b) turns into readable
32       HTML.
33

AUTHOR

35       Amir Karger, akarger@cpan.org
36
37       Brad Choate built Text::Textile Dean Allen of Textism.com developed
38       Textile.
39

SEE ALSO

41       Text::Textile, <http://textism.com>
42
43
44
45perl v5.30.1                      2020-01-30                        TEXTILE(1)
Impressum