defmodule RDF.NTriples do
@moduledoc """
`RDF.NTriples` provides support for reading and writing the N-Triples
serialization format.
N-Triples is a line-based plain-text format for encoding an RDF graph.
It is a very restricted, explicit and well-defined subset of both
[Turtle](http://www.w3.org/TeamSubmission/turtle/) and
[Notation3](http://www.w3.org/TeamSubmission/n3/) (N3).
An example of an RDF statement in N-Triples format:
"Hex" .
see
"""
use RDF.Serialization
import RDF.Sigils
@id ~I
@extension "nt"
@content_type "application/n-triples"
end