我使用Textile markdown创建了一个基于Jekyll的博客,我正在使用Markitup创建一个编辑器我有一段时间让php纺织品解析器工作,所以我可以看到预览。我已经下载了Textile Official PHP Parser,但似乎无法弄明白。
我发现了很多关于如何使用Markdown的例子,但使用Textile的例子看起来有点渺茫。
以下是使用Markdown的代码:
<?php
include_once "markdown.php";
$html=Markdown($_POST['data']);
echo htmlentities($html); \
?>
来自Textile官方PHP解析器的example.php:
<?php
require_once('classTextile.php');
$textile = new Textile();
$in = <<<EOF
A *simple* example.
EOF;
echo $textile->TextileThis($in);
?>
这就是我自己在一起捣乱的地方:
<?php
require_once ('classTextile.php');
$textile = new Textile();
echo $textile->TextileThis($_POST['data']);
?>
有人可以告诉我这里我做错了什么吗?非常感谢任何帮助,我通常不编码网站,我只是让服务器运行:)
谢谢!
答案 0 :(得分:1)
回答,以防其他人正在寻找这个,我发布的最后一个例子:
<?php
require_once ('classTextile.php');
$textile = new Textile();
echo $textile->TextileThis($_POST['data']);
?>
只要您的路径是open_basedir
的一部分,就可以完美地工作DERP。