PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / trunk
Code Block Pro – Beautiful Syntax Highlighting vtrunk
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / turtle.sample

turtle.sample in Code Block Pro – Beautiful Syntax Highlighting trunk, at build/shiki/samples/turtle.sample

16 lines 851 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
2 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3
4 <http://example.org/alice#me> a foaf:Person .
5 <http://example.org/alice#me> foaf:name "Alice" .
6 <http://example.org/alice#me> foaf:mbox <mailto:alice@example.org> .
7 <http://example.org/alice#me> foaf:knows <http://example.org/bob#me> .
8 <http://example.org/bob#me> foaf:knows <http://example.org/alice#me> .
9 <http://example.org/bob#me> foaf:name "Bob" .
10 <http://example.org/alice#me> foaf:knows <http://example.org/charlie#me> .
11 <http://example.org/charlie#me> foaf:knows <http://example.org/alice#me> .
12 <http://example.org/charlie#me> foaf:name "Charlie" .
13 <http://example.org/alice#me> foaf:knows <http://example.org/snoopy> .
14 <http://example.org/snoopy> foaf:name "Snoopy"@en .
15
16 # From https://www.w3.org/TR/sparql11-overview/#Example