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

Make long strings multiline #24

Open kaefer3000 opened 3 years ago

kaefer3000 commented 3 years ago

Hi,

just a suggestion: Long strings, eg. https://rhiaro.co.uk/2021/02/btcon-people-like require horizontal scrolling. Maybe rendering them as Turtle long strings https://www.w3.org/TR/turtle/#grammar-production-STRING_LITERAL_LONG_QUOTE could help as then, newline is allowed to be rendered as such (and not escaped), ie.

<#it> rdfs:comment "blabla\nbla" .

may become

<#it> rdfs:comment """blabla
bla""" .

Keep up the good work!

Tobias