atextor opened a new issue, #1956: URL: https://github.com/apache/jena/issues/1956
### Version 4.9.0 ### What happened? The following turtle input can not be parsed by riot: ```turtle @prefix : <http://example.com/> . :foo :bar """A word is "quoted"""" . ``` ```shell $ riot --sink test.ttl 06:23:56 ERROR riot :: [line: 3, col: 1 ] Broken token (newline): . ``` My understanding is that the last three quotes should be the closing token of the triple-quoted string. If I insert any other character, e.g. a space, after the closing quote of the quoted word, parsing works: ```turtle @prefix : <http://example.com/> . :foo :bar """A word is "quoted" """ . ``` ```shell $ riot --sink test.ttl $ ``` ### Relevant output and stacktrace _No response_ ### Are you interested in making a pull request? Maybe -- 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]
