好久没接触php了,换了新编辑器markdown,对写代码是真好用,但文章的内容摘要显示的也是markdown的语法符号,不太好,需要将markdown内容转为html字符串,再执行原来的html2text方法才是最好的处理;
找了下资料,关于php转换markdown语法为html内容的很少,最后找到一个名为Parsedown的方法,需要下载一个php文件,可以到gitee上下载,github也有,两个url:
gitee仓库:https://gitee.com/mirrors/parsedown/tree/master
github仓库:https://github.com/erusev/parsedown
下载解压后在需要用的地方引入里面的Parsedown.php文件即可,使用方法如下:
require_once(ADMIN."/cms/Parsedown.php");
$Parsedown = new Parsedown();
$bodyParse = $Parsedown->text($body);
//$body为编辑器的markdown内容
注意:该方法仅支持PHP5.3以上版本!