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
17
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>HTMLLiteral RDFa Example</title>
  </head>
  <body vocab="http://schema.org/" typeof="CreativeWork" href="http://x.com/z">
    <div
      typeof="schema:Text"
      property="schema:description"
      datatype="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"
    >
      <p>This is a <strong>bold</strong> statement within an HTMLLiteral!</p>
      <p>RDFa supports <em>rich content</em> extraction.</p>
    </div>
  </body>
</html>