add sub headlines

This commit is contained in:
Jörg Prante 2016-09-28 14:50:28 +02:00
parent 1e7f2dbc6f
commit ec98483d9f

View file

@ -42,6 +42,8 @@ Provided are writers for XML, stylesheet transformations (MODS), and a JSON writ
key/value-oriented JSON, suitable for indexing into Elasticsearch. Indexing into Elasticsearch is not key/value-oriented JSON, suitable for indexing into Elasticsearch. Indexing into Elasticsearch is not
part of this package. part of this package.
### ISO 2709 to MarcXchange
Here is a code example for reading from an ISO 2709 stream and writing into a MarcXchange collection. Here is a code example for reading from an ISO 2709 stream and writing into a MarcXchange collection.
[source,java] [source,java]
@ -56,6 +58,8 @@ try (MarcXchangeWriter writer = new MarcXchangeWriter(out)) {
} }
---- ----
### MARC to MODS
Here is an example to create MODS from an ISO 2709 stream Here is an example to create MODS from an ISO 2709 stream
[source,java] [source,java]
@ -71,6 +75,8 @@ System.setProperty("http.agent", "Java Agent");
marc.transform(new URL("http://www.loc.gov/standards/mods/v3/MARC21slim2MODS3.xsl"), result); marc.transform(new URL("http://www.loc.gov/standards/mods/v3/MARC21slim2MODS3.xsl"), result);
---- ----
### MARC to Aleph sequential
And here is an example showing how records in "Aleph Sequential") can be parsed And here is an example showing how records in "Aleph Sequential") can be parsed
and written into a MarcXchange collection: and written into a MarcXchange collection:
@ -87,6 +93,8 @@ try (MarcXchangeWriter writer = new MarcXchangeWriter(out, true)
} }
---- ----
### MARC in Elasticsearch
Another example, writing compressed Elasticsearch bulk format JSON from an ANSEL MARC input stream: Another example, writing compressed Elasticsearch bulk format JSON from an ANSEL MARC input stream:
[source,java] [source,java]