我正在尝试为Sphinx编写一个自定义角色,以允许链接到PDF文件,然后在浏览器中显示(而不是在使用:download:
角色时下载(。
我已经担任了一个创建PDF文件链接的角色:
:pdf:`Document Title <pdf/document.pdf>`
生成类似以下内容:
<a href="pdf/document.pdf>Document Title</a>
但是,我不知道如何让Sphinx将pdf
目录复制到输出目录。这可能吗?
在conf.py
中使用html_static_path
。
html_static_path = ['_static', 'pdf']