Proposal:
Add support for any number of ' to be present in multi-line literal strings.
This can be done by enabling the starting number of ' be variable, and one more than present in the string itself (minimum 3).
Example:
[object]
text = ''''' It''''s '''''
I have implemented support for this in my extended version parser:
https://github.com/DraagrenKirneh/TOML
Hi!
What we have currently is flexible enough and if it's not, it is easy enough to switch to the basic string format. Plus, I don't expect anyone doing something requiring triple quotes inside a literal string.
Could you provide a concrete example where this would be a useful extension?
I'll go ahead and close this due to a lack of a response from OP on this.
The only use case that @mojombo and I could come up with for this was actually embedding another file within the multi-line literal string at which point switching to a basic string and escaping or just actually having another file for it just works better.
Most helpful comment
Hi!
What we have currently is flexible enough and if it's not, it is easy enough to switch to the basic string format. Plus, I don't expect anyone doing something requiring triple quotes inside a literal string.
Could you provide a concrete example where this would be a useful extension?