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