Converting multiple Markdown files with links to PDF

前端 未结 3 836
难免孤独
难免孤独 2021-02-07 02:12

I\'ve written a load of technical documentation in Markdown. I chose to use this for versioning and so we can view in on GitHub.

We now need to share this with external

3条回答
  •  不要未来只要你来
    2021-02-07 02:44

    I don't know with which type of links you have problems (inline links, reference links, HTML links, image links, automatic links...), but you can try to use Pandoc:

    pandoc *.md -o result.pdf
    

    This will convert all files with the *.md file extension to a single pdf.

提交回复
热议问题