Mercurial > hgrepos > Python > libs > pygments-lexer-pseudocode2
view pygments_lexer_pseudocode2/utils.py @ 240:e18c4bec7889
Do not stretch the Libertinus Mono font with 0.9 but with 0.94 for Palatino
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sat, 16 May 2026 00:35:24 +0200 |
| parents | ae5e741d2a9b |
| children | 298841bc4dee |
line wrap: on
line source
# -*- coding: utf-8; -*- # :- # SPDX-FileCopyrightText: © 2026 Franz Glasner # SPDX-License-Identifier: MIT # :- r"""Some helper utility functions and data. """ __all__ = ["REVERSED_STANDARD_TYPES"] import pygments.token REVERSED_STANDARD_TYPES = {} # Side-effect on import for _toktype, _cssstyle in pygments.token.STANDARD_TYPES.items(): REVERSED_STANDARD_TYPES[_cssstyle] = _toktype del _toktype, _cssstyle
