Skip to content

Commit

Permalink
fix pep8?
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored and mgeier committed Jul 17, 2021
1 parent 9881be5 commit f9852f8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/nbsphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,8 @@ def config_inited(app, config):
mathjax3_config['tex'] = tex
options = {
'ignoreHtmlClass': 'document',
'processHtmlClass': 'tex2jax_process|mathjax_process|math|output_area',
'processHtmlClass':
'tex2jax_process|mathjax_process|math|output_area',
}
options.update(mathjax3_config.get('options', {}))
mathjax3_config['options'] = options
Expand All @@ -1910,7 +1911,8 @@ def config_inited(app, config):
'inlineMath': [['$', '$'], ['\\(', '\\)']],
'processEscapes': True,
'ignoreClass': 'document',
'processClass': 'tex2jax_process|mathjax_process|math|output_area',
'processClass':
'tex2jax_process|mathjax_process|math|output_area',
}
tex2jax.update(mathjax2_config.get('tex2jax', {}))
mathjax2_config['tex2jax'] = tex2jax
Expand Down

0 comments on commit f9852f8

Please sign in to comment.