I really like the WebUI of Stardog, but the rendering for RDF triples, i.e. the result of CONSTRUCT
queries (and probably also DESCRIBE
queries could be improved. Currently, it's almost unreadable. I looked into the page rendering and it looks like a simple HTML <pre>
or some CSS magic is missing as the String itself is already formatted:
Stardog: 5.0.2
Browser: Version 59.0.3071.109 (Developer Build) Built on Ubuntu , running on Ubuntu 16.04 (64-bit)
Query:
CONSTRUCT {
?s ?p ?o
} WHERE {
?s ?p ?o
}
Output:
HTML Element:
<td>
@prefix : <http://example.com/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:rose :color :red ;
a :flower .
:violet :color :blue .
:flower rdfs:subClassOf :plant .
:dogs :love :trucks .
</td>