You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at sequenceDiagram.jison, I see that loop, opt, alt, and else all expect to be followed by actor rather than less-restrictive text (actor excludes U+002D hyphen-minus, U+003E greater-than, U+003A colon, and U+002C comma—and interestingly does not exclude U+0023 number sign).
This means that perfectly harmless descriptions are rejected, e.g.:
sequenceDiagram
A->>B: Hello
opt feels-like-responding
B->>A: Hello
end
The text was updated successfully, but these errors were encountered:
gibson042
added a commit
to gibson042/mermaid
that referenced
this issue
Nov 6, 2015
Looking at sequenceDiagram.jison, I see that
loop
,opt
,alt
, andelse
all expect to be followed byactor
rather than less-restrictive text (actor
excludes U+002D hyphen-minus, U+003E greater-than, U+003A colon, and U+002C comma—and interestingly does not exclude U+0023 number sign).This means that perfectly harmless descriptions are rejected, e.g.:
The text was updated successfully, but these errors were encountered: