Avoid syntax highlighting in blocks that don't specify language

This commit is contained in:
Richard Berger
2020-03-13 15:25:11 -04:00
parent fa7085be07
commit 1554aef454

View File

@ -334,3 +334,6 @@ from sphinx.highlighting import lexers
lexers['LAMMPS'] = LAMMPSLexer.LAMMPSLexer(startinline=True)
sys.path.append(os.path.join(os.path.dirname(__file__), '../../../python'))
# avoid syntax highlighting in blocks that don't specify language
highlight_language = 'none'