943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
63 lines
2.0 KiB
Python
63 lines
2.0 KiB
Python
"""
|
|
pygments.styles.lilypond
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
LilyPond-specific style.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
from pygments.style import Style
|
|
from pygments.token import Token
|
|
|
|
|
|
__all__ = ['LilyPondStyle']
|
|
|
|
|
|
class LilyPondStyle(Style):
|
|
"""
|
|
Style for the LilyPond language.
|
|
|
|
.. versionadded:: 2.11
|
|
"""
|
|
|
|
name = 'lilypond'
|
|
|
|
# Don't show it in the gallery, it's intended for LilyPond
|
|
# input only and doesn't show good output on Python code.
|
|
web_style_gallery_exclude = True
|
|
|
|
styles = {
|
|
Token.Text: "",
|
|
Token.Keyword: "bold",
|
|
Token.Comment: "italic #A3AAB2",
|
|
Token.String: "#AB0909",
|
|
Token.String.Escape: "#C46C6C",
|
|
Token.String.Symbol: "noinherit",
|
|
Token.Pitch: "", #"#911520",
|
|
Token.Number: "#976806", # includes durations
|
|
# A bare 11 is not distinguishable from a number, so we highlight
|
|
# the same.
|
|
Token.ChordModifier: "#976806",
|
|
Token.Name.Lvalue: "#08547A",
|
|
Token.Name.BackslashReference: "#08547A",
|
|
Token.Name.Builtin.MusicCommand: "bold #08547A",
|
|
Token.Name.Builtin.PaperVariable: "bold #6C5A05",
|
|
Token.Name.Builtin.HeaderVariable: "bold #6C5A05",
|
|
Token.Name.Builtin.MusicFunction: "bold #08547A",
|
|
Token.Name.Builtin.Clef: "bold #08547A",
|
|
Token.Name.Builtin.Scale: "bold #08547A",
|
|
Token.Name.Builtin.RepeatType: "#08547A",
|
|
Token.Name.Builtin.Dynamic: "#68175A",
|
|
Token.Name.Builtin.Articulation: "#68175A",
|
|
Token.Name.Builtin.SchemeFunction: "bold #A83401",
|
|
Token.Name.Builtin.SchemeBuiltin: "bold",
|
|
Token.Name.Builtin.MarkupCommand: "bold #831E71",
|
|
Token.Name.Builtin.Context: "bold #038B8B",
|
|
Token.Name.Builtin.ContextProperty: "#038B8B",
|
|
Token.Name.Builtin.Grob: "bold #0C7441",
|
|
Token.Name.Builtin.GrobProperty: "#0C7441",
|
|
Token.Name.Builtin.Translator: "bold #6200A4",
|
|
}
|