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 2382ef2 commit 44d96a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +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 @@ -30,5 +30,6 @@
entry_points="""
[pygments.lexers]
jsx=jsx:JsxLexer
tsx=jsx:TsxLexer
""",
)

0 comments on commit 44d96a4

Please sign in to comment.