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 c8c4d2b commit 27a38caCopy full SHA for 27a38ca
src/nbsphinx.py
@@ -1086,7 +1086,9 @@ def decode(data):
1086
# see issue #155
1087
cmd += ['--eol', 'lf']
1088
cmd1 = cmd + ['--from', fmt, '--to', 'json']
1089
+
1090
cmd2 = cmd + ['--from', 'json', '--to', to]
1091
+ cmd2 += ['--columns=500'] # Avoid breaks in tables, see issue #240
1092
1093
p = subprocess.Popen(cmd1, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
1094
json_data, _ = p.communicate(encode(source))
0 commit comments