Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
698 B
Python
22 lines
698 B
Python
"""
|
|
pygments.lexers.math
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Just export lexers that were contained in this module.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
# ruff: noqa: F401
|
|
from pygments.lexers.python import NumPyLexer
|
|
from pygments.lexers.matlab import MatlabLexer, MatlabSessionLexer, \
|
|
OctaveLexer, ScilabLexer
|
|
from pygments.lexers.julia import JuliaLexer, JuliaConsoleLexer
|
|
from pygments.lexers.r import RConsoleLexer, SLexer, RdLexer
|
|
from pygments.lexers.modeling import BugsLexer, JagsLexer, StanLexer
|
|
from pygments.lexers.idl import IDLLexer
|
|
from pygments.lexers.algebra import MuPADLexer
|
|
|
|
__all__ = []
|