web.py 894 B

1234567891011121314151617181920212223
  1. """
  2. pygments.lexers.web
  3. ~~~~~~~~~~~~~~~~~~~
  4. Just export previously exported lexers.
  5. :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. """
  8. from pygments.lexers.html import HtmlLexer, DtdLexer, XmlLexer, XsltLexer, \
  9. HamlLexer, ScamlLexer, JadeLexer
  10. from pygments.lexers.css import CssLexer, SassLexer, ScssLexer
  11. from pygments.lexers.javascript import JavascriptLexer, LiveScriptLexer, \
  12. DartLexer, TypeScriptLexer, LassoLexer, ObjectiveJLexer, CoffeeScriptLexer
  13. from pygments.lexers.actionscript import ActionScriptLexer, \
  14. ActionScript3Lexer, MxmlLexer
  15. from pygments.lexers.php import PhpLexer
  16. from pygments.lexers.webmisc import DuelLexer, XQueryLexer, SlimLexer, QmlLexer
  17. from pygments.lexers.data import JsonLexer
  18. JSONLexer = JsonLexer # for backwards compatibility with Pygments 1.5
  19. __all__ = []