0

我正在尝试使用 Michel Fortin 的 PHP-Markdown 库,但在让它在我的服务器上运行时遇到了一些麻烦。

我已将解析器库文件上传到 / 子文件夹中的服务器。我的 testmd.php 文件是一个文件夹。目前,我正在使用下面的代码来 require_once 文件,但是我的 markdown(链接)的单个测试行没有被解析。为了让 PHP-markdown 库为这样的示例工作,我还需要做些什么或包括其他事情吗?

测试md.php

<?php
require_once ('subfolder/Markdown.inc.php');
require_once ('subfolder/includetest.php');
?>
<html>
    <body>

<?php
use \Michelf\Markdown;
$html = Markdown::defaultTransform('[Test](www.google.com)');
?>

    </body>
</html>

在上面的代码中,includetest.php 只是一个测试包含文件,以确保我没有在那里犯错。该文件包含在输出中,但不包含 MD 链接。没有错误出现,所以输出如下:

输出

This is text from the includetest.php file.

由于我是 PHP 新手,非常感谢任何帮助!

4

1 回答 1

1

你只是在加载解析器,但你没有用它做任何事情。你需要一条线

$my_html = Markdown::defaultTransform($my_text);

...将 Markdown 转换为 HTML。像这样:

<?php
require_once ('subfolder/MarkdownExtra.inc.php');
require_once ('subfolder/includetest.php');
?>
<html>
<body>
<?php Markdown::defaultTransform("[Test](www.google.com)"); ?>
</body>
</html>

我以前没用过这个。我只是通过我能找到的文档。

于 2014-01-27T04:56:56.780 回答