mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
19 lines
372 B
Python
19 lines
372 B
Python
"""
|
|
Lexer interface and implementations.
|
|
Used for syntax highlighting.
|
|
"""
|
|
from .base import DynamicLexer, Lexer, SimpleLexer
|
|
from .pygments import PygmentsLexer, RegexSync, SyncFromStart, SyntaxSync
|
|
|
|
__all__ = [
|
|
# Base.
|
|
"Lexer",
|
|
"SimpleLexer",
|
|
"DynamicLexer",
|
|
# Pygments.
|
|
"PygmentsLexer",
|
|
"RegexSync",
|
|
"SyncFromStart",
|
|
"SyntaxSync",
|
|
]
|