diff options
| author | Jonas Smedegaard <dr@jones.dk> | 2025-05-18 15:28:41 +0200 |
|---|---|---|
| committer | Jonas Smedegaard <dr@jones.dk> | 2025-05-18 15:28:41 +0200 |
| commit | 8fe2090f505d76760cc3b4ad482b5614c058a51b (patch) | |
| tree | 9c05119ffe2d86881d6b0c7a6048c21070e9fda3 /def_LinkLabel.py | |
| parent | be2cd3566db38253447d631aaeac0defffcd81a6 (diff) | |
deprioritize whitespace
Diffstat (limited to 'def_LinkLabel.py')
| -rwxr-xr-x | def_LinkLabel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/def_LinkLabel.py b/def_LinkLabel.py index cefebce..be8afcb 100755 --- a/def_LinkLabel.py +++ b/def_LinkLabel.py @@ -9,9 +9,9 @@ from railroad import * Diagram( Start("complex"), "[", - Choice(0, (NonTerminal("_")), Skip()), + Optional(NonTerminal("_"), True), NonTerminal("![\\[\\]] PlainWords"), - Choice(0, (NonTerminal("_")), Skip()), + Optional(NonTerminal("_"), True), "]", End("complex") ).writeStandalone( |
