使用markdown写简历

首先使用markdown写出一份有稳扎稳打的简历,按照其基本格式语法写出即可,简洁而方便,但是关键问题在于需要将markdown文件转换成pdf或者html格式,大婶们已经提供了充足的工具供使用。

法一:使用there4/markdown-resume模板

我目前采用的就是这个工具,首先需要下载仓库:

1
git clone https://github.com/there4/markdown-resume.git

然后安装php环境,我之前安装时一直没有执行这一步,导致报错:

1
2
Missing Dependency: Please install the Multibyte String Functions.
More help: http://www.php.net/manual/en/mbstring.installation.php

需要执行(debian环境):

1
sudo apt install php7.0-mbstring wkhtmltopdf

接着对于写好的markdown

输出pfd:

1
./bin/md2resume pdf examples/source/zhsample.md examples/output/

输出html:

./bin/md2resume html examples/source/sample.md examples/output/

法二:mwhite/resume 但是经过我测试,本来的项目可以转英文不能转中文,修改后的项目仍然出错,怎么办?

法三:tinylab/latex-resume

法二、法三均参考见网上博客

还有一个貌似自由度挺高挺简单的:geekcompany/DeerResume

这是在线markdown简历工具

另外,还有一些简历的markdown模板

模板

总结:虽然都是转换pdf,但是不同的工具在格式上稍有不同,可选择合适的进行使用。