jormin / md-convert
Markdown 转 Html 或 PDF
Installs: 78
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:CSS
Requires
- php: ^5.6 || ^7.0
- alchemy/zippy: ^0.4.9
- erusev/parsedown: ^1.7
- mpdf/mpdf: ^7.1
This package is auto-updated.
Last update: 2024-11-06 10:43:46 UTC
README
Markdown 转 Html 或 PDF
安装
$ composer require jormin/md-convert -vvv
通用响应
使用
生成转换对象
$mdConvert = \Jormin\MDConvert\MDConvert::load();
转换Html
转换结果为 zip 压缩包,包含
html
文件和css
文件
/** * 转换Html * * @param string $mdFile Markdown源文件绝对路径,需要可读 * @param string $savePath 转换后文件存储目录,需要可读可写,为空默认使用源文件目录 * @param array $saveName 转换后文件名称,为空默认使用源文件名称 * @return array */ $mdConvert->toHtml($mdFile, [$savePath=null, $saveName=null]);
转换PDF
/** * 转换PDF * * @param string $mdFile Markdown源文件绝对路径,需要可读 * @param string $savePath 转换后文件存储目录,需要可读可写,为空默认使用源文件目录 * @param array $saveName 转换后文件名称,为空默认使用源文件名称 * @return array */ $mdConvert->toPDF($mdFile, [$savePath=null, $saveName=null]);
参考扩展
License
The MIT License (MIT). Please see License File for more information.