1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: (Debian packaging) Fix lintian warning by using local mathjax package instead of CDN
Author: Kyle Kloberdanz <kyle.kloberdanz@mongodb.com>
Forwarded: not-needed
---
src/libmongoc/doc/conf.py | 2 ++
1 file changed, 2 insertions(+)
--- a/src/libmongoc/doc/conf.py
+++ b/src/libmongoc/doc/conf.py
@@ -50,6 +50,8 @@
if has_sphinx_design:
extensions.append("sphinx_design")
+mathjax_path = "file:///usr/share/javascript/mathjax/MathJax.js"
+
# General information about the project.
project = "libmongoc"
copyright = "2009-present, MongoDB, Inc."
|