kianschmalenbach / rdf-browser

A Firefox Add-on that requests RDF files and renders RDF files as Turtle documents with clickable links
MIT License
16 stars 6 forks source link

abbreviate `rdf:type` using Turtle keyword `a` #30

Open Antoine-Zimmermann opened 3 years ago

Antoine-Zimmermann commented 3 years ago

It would be nice to systematically abbreviate rdf:type as the single-letter keyword a. Currently, this:

@prefix ex: <http://example.com/> .
 ex:it a ex:Thing .

is rendered as:

@prefix ex: <http://example.com/> .
ex:it <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ex:Thing .