afs commented on issue #1956:
URL: https://github.com/apache/jena/issues/1956#issuecomment-1630295626

   The close is the first 3 consecutive quotes encountered after the opening 
`"""`  like `"""A word is "quoted""" "`.
   
   https://www.w3.org/TR/turtle/#grammar-production-STRING_LITERAL_LONG_QUOTE
   
   ```
   STRING_LITERAL_LONG_QUOTE    ::=     '"""' (('"' | '""')? ([^"\] | ECHAR | 
UCHAR )))* '"""'
   ```
   
   Note the inner `('"' | '""')?` -- three in a row is not covered by the 
string contents part.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to