Hello PlantUML team,
- Could you allow all full restriction management with except-symbol "-"?
[perhaps with a 'not' management]
Here is some examples (taken from the ISO EBNF standard):
1/ OK:
@startebnf
title Second example of §5.8 Syntactic-term of ISO-EBNF
ee = {"A"}-, "E";
@endebnf

2/ Wanted feature:
@startebnf
title First example of §5.8 Syntactic-term of ISO-EBNF
letter = "A" | "B" | "C" | "D" | "E" | "F"
| "G" | "H" | "I" | "J" | "K" | "L" | "M"
| "N" | "O" | "P" | "Q" | "R" | "S" | "T"
| "U" | "V" | "W" | "X" | "Y" | "Z" ;
vowel = "A" | "E" | "I" | "O" | "U";
consonant = letter - vowel;
@endebnf
Thanks for your works,
Regards.