We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee42678 commit cf68cc9Copy full SHA for cf68cc9
docs/source/conf.py
@@ -1,5 +1,4 @@
1
#!/usr/bin/env python3
2
-# -*- coding: utf-8 -*-
3
#
4
# ELI5 documentation build configuration file, created by
5
# sphinx-quickstart on Mon Nov 14 21:54:37 2016.
@@ -67,6 +66,13 @@ def __getattr__(cls, name):
67
66
def setup(app):
68
# see https://github.com/snide/sphinx_rtd_theme/issues/117
69
app.add_css_file("rtfd_overrides.css")
+ # see https://github.com/spatialaudio/nbsphinx/issues/549
70
+ app.connect('env-before-read-docs', set_line_length_limit)
71
+
72
73
+def set_line_length_limit(app, env, docnames):
74
+ env.settings['line_length_limit'] = 1_000_000
75
76
77
suppress_warnings = ['image.nonlocal_uri']
78
0 commit comments