esteinberg / plantuml4idea

Intellij IDEA plugin for PlantUML
Apache License 2.0
633 stars 113 forks source link

Add EBNF tag support #368

Closed thirtque closed 2 years ago

thirtque commented 2 years 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 2 years ago

Cool, thanks!