Converting multiple Markdown files with links to PDF

前端 未结 3 790
难免孤独
难免孤独 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:51

    I use named anchor tags in my markdown document. And I make links to these names. For example,

    
    ##1. Overview
    
    ......
    
    Reference: [1. Overview](#1-overview)
    

    Then I use Typora to open the markdown document and export it to PDF. The resulting PDF preserves these internal links properly.

提交回复
热议问题