graph-rdfa-processor 0.3.12

Graph RDFa processor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@prefix rdfa: <http://www.w3.org/ns/rdfa#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .

<http://test.org>
   rdfa:usesVocabulary dc: .
<http://test.org/alice/posts/trouble_with_bob>
   rdf:type schema:BlogPosting;
   dc:title "The trouble with Bob";
   dc:creator <http://test.org#me>;
   schema:articleBody """
        
          The trouble with Bob is that he takes much better photos than I do:
        
      """ .