esteinberg / plantuml4idea

Intellij IDEA plugin for PlantUML
Apache License 2.0
629 stars 114 forks source link

Add EBNF tag support #368

Closed thirtque closed 1 year ago

thirtque commented 1 year ago

This should allow everyone to use @startebnf/@endebnf.

Example:

@startebnf
digit-excluding-zero = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9";
digit                = "0" | digit-excluding-zero;
@endebnf

Result: test

krasa commented 1 year ago

Cool, thanks!