mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-10-15 20:20:10 +02:00
16 lines
225 B
Plaintext
16 lines
225 B
Plaintext
grammar Packet
|
|
import "../common/common";
|
|
|
|
entry Packet:
|
|
NEWLINE*
|
|
"packet-beta"
|
|
(
|
|
TitleAndAccessibilities
|
|
| blocks+=PacketBlock
|
|
| NEWLINE
|
|
)*
|
|
;
|
|
|
|
PacketBlock:
|
|
start=INT('-' end=INT)? ':' label=STRING EOL
|
|
; |