Remove parsing of why3 doc strings

This commit is contained in:
Alex Beregszaszi
2017-06-30 22:34:03 +01:00
parent c5947ae6e3
commit a46b3479bb
3 changed files with 2 additions and 14 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class SolidityLexer(RegexLexer):
(r'/\*.*?\*/', Comment.Multiline)
],
'natspec': [
(r'@author|@dev|@notice|@return|@param|@why3|@title', Keyword),
(r'@author|@dev|@notice|@return|@param|@title', Keyword),
(r'.[^@*\n]*?', Comment.Special)
],
'docstringsingle': [