如何在 PHP 中使用 Textile?

发布于 2024-09-13 16:51:40 字数 142 浏览 4 评论 0原文

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

有人有什么想法吗?

a (hopefully) quick question - how can I use Textile in PHP? As in, I have some textile-formatted text that I want to convert to html using php. If I was using Ruby I'd use RedCloth but I can't seem to find a similar solution for php.

Anybody any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花开浅夏 2024-09-20 16:51:40

例如,获取原始 Textile 库

Get, for example, the original Textile library.

小嗷兮 2024-09-20 16:51:40

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

// 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.');

To be more specific, what the Example file has is:

// 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);

And for those whom Heredoc string syntax might be confusing (Like myself) here is the basic form.

require_once('classTextile.php');

$textile = new Textile();

echo $textile->TextileThis('A *simple* example.');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文