fix(syntax_hilighting): syntax

This commit is contained in:
EmileRolley 2021-03-10 14:37:09 +01:00
parent 0ca2402d14
commit 55fa3d726f

View File

@ -17,7 +17,7 @@ class CatalaFrLexer(RegexLexer):
(u'([\#]+)', bygroups(Generic.Heading), 'main__1'),
(u'([\#]+\s*\[[^\]]\s*])', bygroups(Generic.Heading), 'main__2'),
(u'([^`\\n\\r])', bygroups(Text)),
(u'(```)', bygroups(Text), 'code'),
(u'(```catala)', bygroups(Text), 'code'),
('(\n|\r|\r\n)', Text),
('.', Text),
],