logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

textile - Translate Textile markup language to HTML

Author

       Amir Karger, akarger@cpan.org

       Brad Choate built Text::Textile Dean Allen of Textism.com developed Textile.

Description

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

Name

       textile - Translate Textile markup language to HTML

See Also

       Text::Textile, <http://textism.com>

perl v5.36.0                                       2022-10-13                                        TEXTILE(1p)

Synopsis

        # translate a text file to HTML, print to screen
        textile file.txt

        # translate a snippet of text to HTML
        echo "hi there" | textile

        # translate a text file, output to a file
        textile -outfile out.html file.txt

        # translate a text file, output to a legal full HTML file
        # (By default, textile doesn't output <html>, <head> and <body> tags)
        textile -fullpage -outfile out.html file.txt

        # translate a text file, output to a legal full HTML file, add title
        # (-title implies -fullpage)
        textile -title "My <blink>133t</blink> web page" -outfile out.html file.txt

See Also