故障排查手册
针对典型问题的解决方案:
- fail to activate::
- 确认Python版本:
python3 -V
需≥3.10 - 检查依赖:
pip list | grep moffee
- 清除缓存:
pip cache purge
- 确认Python版本:
- 渲染异常::
- 验证Markdown语法:在线工具检查格式
- 禁用扩展:尝试
moffee make --no-extras
- View Log:
moffee debug yourfile.md
- 导出问题::
- HTML乱码:添加
charset: utf-8
到front matter - PDF缺失内容:改用
moffee make --pdf
专有命令
- HTML乱码:添加
进阶调试:启用详细日志moffee yourfile.md -v DEBUG
This answer comes from the articleMoffee: Convert Markdown to PPT SlideshowThe