summaryrefslogtreecommitdiff
path: root/pygments/styles/__init__.py
diff options
context:
space:
mode:
authorMauricio Caceres Bravo <mauricio.caceres.bravo@gmail.com>2018-12-18 13:31:32 -0500
committerMauricio Caceres Bravo <mauricio.caceres.bravo@gmail.com>2018-12-18 13:31:32 -0500
commitdf656b31ecabd8a1b649f79de050854a2974e395 (patch)
tree3726a090e850d6e6ca398c8aa782e8bed097451e /pygments/styles/__init__.py
parentfd2b598cc8a5f3e7103b90393a3b188a927f4a6e (diff)
downloadpygments-df656b31ecabd8a1b649f79de050854a2974e395.tar.gz
Stata lexer and styles improvements and bug fixes
- Nested comments correctly highlighted. - Globals and locals correctly nested inside each other and strings. - Extended locals and stored results correctly highlighted. - Keywords and operators correctly highlighted. - Parentheses and functions correctly highlighted.
Diffstat (limited to 'pygments/styles/__init__.py')
-rw-r--r--pygments/styles/__init__.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/pygments/styles/__init__.py b/pygments/styles/__init__.py
index 4efd196e..35f64ac5 100644
--- a/pygments/styles/__init__.py
+++ b/pygments/styles/__init__.py
@@ -5,7 +5,7 @@
Contains built-in styles.
- :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -41,7 +41,12 @@ STYLE_MAP = {
'lovelace': 'lovelace::LovelaceStyle',
'algol': 'algol::AlgolStyle',
'algol_nu': 'algol_nu::Algol_NuStyle',
- 'arduino': 'arduino::ArduinoStyle'
+ 'arduino': 'arduino::ArduinoStyle',
+ 'rainbow_dash': 'rainbow_dash::RainbowDashStyle',
+ 'abap': 'abap::AbapStyle',
+ 'sas': 'sas::SasStyle',
+ 'stata-light': 'stata_light::StataLightStyle',
+ 'stata-dark': 'stata_dark::StataDarkStyle',
}