xianyunyh/parse-hexo

There is no license information available for the latest version (1.0) of this package.

1.0 2017-11-19 14:07 UTC

This package is auto-updated.

Last update: 2024-05-18 05:40:20 UTC


README

依赖erusev/parsedownyaml

composer install

测试实例

$file = "./crontab.md";
$parse = new \XianYun\ParseHexo($file);
$header = $parse->getHeader();//markdown header中yaml数据
$content = $parse->getContent();//正文内容
$Parsedown = new \Parsedown();// 利用parsemarkdown 解析正文
$content = $Parsedown->text($content);