Update LAMMPS lexer for docs

This commit is contained in:
Richard Berger 2020-02-25 11:29:41 -05:00
parent 8d427b54ec
commit 96d04b8a6c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class LAMMPSLexer(RegexLexer):
(r'[\w_\.\[\]]+', Name),
(r'\$[\w_]+', Name.Variable),
(r'\s+', Whitespace),
(r'[\+\-\*\/&=<>]', Operator),
(r'[\+\-\*\^\|\/\!%&=<>]', Operator),
],
'variable' : [
('[^\}]+', Name.Variable),