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
Requires
- php: >=5.6.0
- ext-yaml: >=1.3.1
- erusev/parsedown: ^1.6
This package is auto-updated.
Last update: 2025-05-18 07:41:27 UTC
README
依赖erusev/parsedown 和 yaml
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);