Re: strange pygments handling of LilyPond input,Re: strange pygments handling of LilyPond input,Re: strange pygments handling of LilyPond input,Re: strange pygments handling of LilyPond input

2022-11-26 Thread Werner LEMBERG
>> OK, thanks. I wonder how the heuristics could be improved. Given >> that a lyric hyphen must be preceded by whitespace, while normally >> `--` as an articulation is following a non-whitespace character, >> maybe a look-behind assertion for the latter would help? Something >> similar could

Re: strange pygments handling of LilyPond input, Re: strange pygments handling of LilyPond input

2022-11-02 Thread Jean Abou Samra
Le 02/11/2022 à 16:19, Werner LEMBERG a écrit : OK, thanks. I wonder how the heuristics could be improved. Given that a lyric hyphen must be preceded by whitespace, while normally `--` as an articulation is following a non-whitespace character, maybe a look-behind assertion for the latter

Re: strange pygments handling of LilyPond input,Re: strange pygments handling of LilyPond input

2022-11-02 Thread Werner LEMBERG
>> ``` >> c''4-3 e-5 b-2 a-1 >> ``` >> >> which Pygments translates to >> >> ``` >> @t{c''} @t{4} @t{-3} @t{e} @t{-5} @t{b} @t{-2} @t{a} @t{-1} >> ``` >> >> that is, the `-` is not typeset in bold. > > Because "-3" could just as well be a number rather than a fingering, > and it's hard to guess.