reStructuredText 超链接引用本地 pdf 文件

reStructuredText Hyperlink References a local pdf file

nginx_pdf_
.. _nginx_pdf: Mastering Nginx.pdf

Mastering Nginx.pdf 是第一个文件所在目录中的本地pdf 文件。我想如果单击超链接,浏览器会打开 pdf 文件,但这不起作用。我怎样才能做到这一点

狮身人面像

只需在您的项目中创建 _downloads 文件夹,然后将文件放在那里。然后从第一个文件调用它:

:download:`_downloads/Mastering Nginx.pdf`

它应该可以正常工作。

文档

将pdf文件名中的space替换为下划线,这样就可以了:

nginx_pdf_

.. _nginx_pdf: Mastering_Nginx.pdf

构建它:

rst2html test.rst > test.html