module RDF::Raptor::RDFa

RDFa support.

@example Requiring the ‘RDF::Raptor` module

require 'rdf/raptor'

@example Extracting RDF statements from an XHTML+RDFa file

RDF::Reader.open("input.html") do |reader|
  reader.each_statement do |statement|
    puts statement.inspect
  end
end

@see rdfa.info/