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.Format import RDF.Sigils @id ~I @name :ntriples @extension "nt" @media_type "application/n-triples" end