Railroad diagrams are a popular method to visualize context-free grammars and you can map Backus-Naur Form to these diagrams. But some variants of BNF, for instance W3C-BNF allow exceptions (as context-free languages are not closed under difference, these exceptions must be regular). I'd like to visualize a grammar with exceptions in a railroad diagram. Should I invent my own extension to the graphical notation or has someone already experimented with this?
Here is an example of a rule with exception (yes, you could also express this particular grammar without exception, but that's not the point):
comment := "<!--" (string - "--") "-->"
An exception can be any regular grammar. I thought about adding exception connected to non-terminal symbols by some special type of arrow or line (here indicated with exclamation marks):
[<] → [!] → [-] → [-] → (string) → [-] → [-] → [>]
!
! → [-] → [-] → ↯
P.S: The grammar was wrong, it should be
comment := "<!--" (string - (string "--" string | string "-")) "-->"
Maybe the non-intuitive use of negation is one reason why it is little used in formal grammars?

