1

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

有人有什么想法吗?

4

2 回答 2

3

例如,获取原始 Textile 库

于 2010-08-12T12:55:36.327 回答
2

更具体地说,示例文件的内容是:

// 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.');
于 2012-10-01T16:07:56.070 回答