1TEXTILE(1) User Contributed Perl Documentation TEXTILE(1)
2
3
4
6 textile - Translate Textile markup language to HTML
7
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
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
35 Amir Karger, akarger@cpan.org
36
37 Brad Choate built Text::Textile Dean Allen of Textism.com developed
38 Textile.
39
41 Text::Textile, <http://textism.com>
42
43
44
45perl v5.32.1 2021-01-27 TEXTILE(1)