Skip to content

Commit

Permalink
tsx lexer gets actually added
Browse files Browse the repository at this point in the history
  • Loading branch information
cad0p committed Apr 11, 2023
1 parent 089e9c1 commit ddc01d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jsx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .lexer import JsxLexer # noqa
from .lexer import TsxLexer

__all__ = ["JsxLexer"]

__all__ = ["JsxLexer", "TsxLexer"]
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
entry_points="""
[pygments.lexers]
jsx=jsx:JsxLexer
tsx=jsx:TsxLexer
""",
)

0 comments on commit ddc01d2

Please sign in to comment.