如何在PHP中使用Textile?

时间:2010-08-12 12:52:01

标签: php textile

(希望)快速提问 - 如何在PHP中使用Textile?在,我有一些纺织格式的文本,我想使用PHP转换为HTML。如果我使用Ruby,我会使用RedCloth,但我似乎找不到类似的php解决方案。

有人有什么想法吗?

2 个答案:

答案 0 :(得分:3)

例如,获取the original Textile library

答案 1 :(得分:1)

更具体地说,示例文件具有以下内容:     

// A simple example

require_once('classTextile.php');

$textile = new Textile();

$in = <<<EOF

A *simple* example.

EOF;


echo $textile->TextileThis($in);

// For untrusted user input, use TextileRestricted instead:
// echo $textile->TextileRestricted($in);

对于那些Heredoc字符串语法可能令人困惑的人(像我一样),这里是基本形式。

require_once('classTextile.php');

$textile = new Textile();

echo $textile->TextileThis('A *simple* example.');