mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-02 20:04:14 +01:00
17 lines
224 B
Plaintext
17 lines
224 B
Plaintext
grammar Pie
|
|
import "../common/common";
|
|
|
|
entry Pie:
|
|
NEWLINE*
|
|
"pie" showData?="showData"?
|
|
(
|
|
TitleAndAccessibilities
|
|
| sections+=PieSection
|
|
| NEWLINE
|
|
)*
|
|
;
|
|
|
|
PieSection:
|
|
label=STRING ":" value=NUMBER EOL
|
|
;
|