Doc: closing inline delimiters can’t be followed by punctuation
triple_business = {{ __foo constructor__, __bar constructor__ }}
becomes the following after a round trip (added triple _s):
triple_business = {{ ___foo constructor__,__bar constructor___ }}
If I add the space back in after the comma, then it doesn't parse. Triple _s isn't a thing anyway.
triple_business = {{ ___foo constructor__, __bar constructor___ }}
Hopefully will fix these definitions from [website]:
- [ ] languageReference.userDefinedTypes
I don’t know if this is new behavior since this ticket was opened, but
Triple
_s isn't a thing anyway.
We parse any number of matching characters as an opening delimiter and then match the same number for closing.
and I believe that if the closing side is short it borks the parser
oh, hmm, maybe its when the closing side is long and the token gets split and the leftovers create a new open?
The issue is that the closing delimiter isn’t followed by whitespace. I commented on a duplicate ticket – #3895, but am traversing all the issues before I start closing them.