xianyunyh / parse-hexo
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/xianyunyh/parse-hexo
Requires
- php: >=5.6.0
- ext-yaml: >=1.3.1
- erusev/parsedown: ^1.6
This package is auto-updated.
Last update: 2025-09-18 08:19:38 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);