Exclude NTriples and NQuads decoders and encoders from documentation
This commit is contained in:
parent
f3168e1682
commit
93a8a2c40b
4 changed files with 8 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
|||
defmodule RDF.NQuads.Decoder do
|
||||
@moduledoc false
|
||||
|
||||
use RDF.Serialization.Decoder
|
||||
|
||||
def decode(content, _opts \\ []) do
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
defmodule RDF.NQuads.Encoder do
|
||||
@moduledoc false
|
||||
|
||||
use RDF.Serialization.Encoder
|
||||
|
||||
def encode(data, opts \\ []) do
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
defmodule RDF.NTriples.Decoder do
|
||||
@moduledoc false
|
||||
|
||||
use RDF.Serialization.Decoder
|
||||
|
||||
def decode(content, _opts \\ []) do
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
defmodule RDF.NTriples.Encoder do
|
||||
@moduledoc false
|
||||
|
||||
use RDF.Serialization.Encoder
|
||||
|
||||
alias RDF.{Literal, BlankNode}
|
||||
|
|
Loading…
Reference in a new issue