[
https://issues.apache.org/jira/browse/JENA-2080?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17315529#comment-17315529
]
ASF subversion and git services commented on JENA-2080:
-------------------------------------------------------
Commit 981896aa40ccd2e391f328a05d0b12e7baac19e9 in jena's branch
refs/heads/main from Andy Seaborne
[ https://gitbox.apache.org/repos/asf?p=jena.git;h=981896a ]
JENA-2080: TriX-star
> Add RDF-star support to TriX.
> -----------------------------
>
> Key: JENA-2080
> URL: https://issues.apache.org/jira/browse/JENA-2080
> Project: Apache Jena
> Issue Type: Improvement
> Reporter: Andy Seaborne
> Assignee: Andy Seaborne
> Priority: Minor
> Fix For: Jena 4.1.0
>
>
> We can reuse {{<triple>}} for embedded use:
> {noformat}
> PREFIX : <http://example/>
> <<:s :p :o>> :p :o1 .
> {noformat}
> becomes
> {noformat}
> <trix xmlns="http://www.w3.org/2004/03/trix/trix-1/">
> <graph>
> <triple>
> <triple>
> <uri>http://example/s</uri>
> <uri>http://example/p</uri>
> <uri>http://example/o</uri>
> </triple>
> <uri>http://example/p</uri>
> <uri>http://example/o1</uri>
> </triple>
> </graph>
> </trix>
> {noformat}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)