Skip to content

Commit

Permalink
Use MathJax for formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Aug 28, 2024
1 parent 76a21d3 commit 8d08661
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doxygen/make-docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def make_doxyfile(tags):
line = 'HTML_FOOTER = %s/footer.html\n' % DOXDIR
elif line.startswith('GENERATE_LATEX '):
line = 'GENERATE_LATEX = NO\n'
elif line.startswith('USE_MATHJAX '):
line = 'USE_MATHJAX = YES\n'
elif line.startswith('TAGFILES '):
line = 'TAGFILES = %s\n' % tagfiles
fh.write(line)
Expand Down
2 changes: 2 additions & 0 deletions notebook/process_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,8 @@ def make_doxyfile(root, tags):
line = 'HTML_FOOTER = "%s/footer.html"\n' % DOXDIR
elif line.startswith('GENERATE_LATEX '):
line = 'GENERATE_LATEX = NO\n'
elif line.startswith('USE_MATHJAX '):
line = 'USE_MATHJAX = YES\n'
elif line.startswith('AUTOLINK_SUPPORT '):
# Don't make links from the text (only from code samples)
line = 'AUTOLINK_SUPPORT = NO\n'
Expand Down

0 comments on commit 8d08661

Please sign in to comment.