summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.shex
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2019-11-10 13:56:53 +0100
committerMatth?us G. Chajdas <dev@anteru.net>2019-11-10 13:56:53 +0100
commit1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch)
tree87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/example.shex
parentf1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff)
downloadpygments-master.tar.gz
Remove all files, redirect to GitHub.HEADmaster
Diffstat (limited to 'tests/examplefiles/example.shex')
-rw-r--r--tests/examplefiles/example.shex20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/examplefiles/example.shex b/tests/examplefiles/example.shex
deleted file mode 100644
index 8fab2c85..00000000
--- a/tests/examplefiles/example.shex
+++ /dev/null
@@ -1,20 +0,0 @@
-PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
-PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
-PREFIX schema: <http://schema.org/>
-PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-PREFIX ex: <http://pygments.example/#>
-
-ex:Lexer {
- rdfs:label xsd:string;
- skos:altLabel xsd:string*;
- ex:filenames xsd:string+;
- ex:mimetypes xsd:string+;
- ex:priority xsd:decimal MinInclusive 0.0 MaxExclusive 1.0; # seems to be the de facto range of currently defined priorities
- ex:lexes @ex:Language*;
-}
-
-ex:Language {
- schema:description rdf:langString*;
- schema:url IRI?;
-}