-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assert while parsing valid yaml with ':' in text #361
Comments
Thanks for reporting. Allow some time before this is fixed. |
Thank you for your quick reply. Take your time, I raised this issue mostly because I saw it; I can workaround it as follow:
|
Finally looking at this. FWIW, this smaller example fails the same way: description:
foo:bar while this succeeds: description: foo:bar description: Timecode in "HH:MM:SS:FF" format where the last ':' can be replaced by ',' or ';'. |
biojppm
added a commit
that referenced
this issue
Jun 6, 2023
biojppm
added a commit
that referenced
this issue
Jun 6, 2023
Thanks ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While parsing:
rapidyam 0.5.0 asserts in
csubstr Parser::_consume_scalar()
, onRYML_CHECK(m_state->flags & SSCL);
.YAML contains tricky ":" in text string but is considered valid by online validators and is read correctly by libyaml.
The text was updated successfully, but these errors were encountered: