turtle parser

transforms a turtle string to a TurtleDoc

Work in progress

Todo

Example

Input

```turtle @prefix foaf: http://foaf.com/. [ foaf:name "Alice" ] foaf:knows [ foaf:name "Bob" ; foaf:lastName "George", "Joshua" ; foaf:knows [ foaf:name "Eve" ] ; foaf:mbox bob@example.com] .

```

Output

turtle <http://example.org/.well-known/genid#e162c9a7-52cf-4240-9359-b1b1f977f642> <http://foaf.com/name> "Alice"^^<http://www.w3.org/2001/XMLSchema#string>. <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2> <http://foaf.com/name> "Bob"^^<http://www.w3.org/2001/XMLSchema#string>. <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2> <http://foaf.com/lastName> "George"^^<http://www.w3.org/2001/XMLSchema#string>. <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2> <http://foaf.com/lastName> "Joshua"^^<http://www.w3.org/2001/XMLSchema#string>. <http://example.org/.well-known/genid#7a9cfb63-1bfa-44ee-bfb9-c3d3db7da920> <http://foaf.com/name> "Eve"^^<http://www.w3.org/2001/XMLSchema#string>. <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2> <http://foaf.com/knows> <http://example.org/.well-known/genid#7a9cfb63-1bfa-44ee-bfb9-c3d3db7da920>. <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2> <http://foaf.com/mbox> <bob@example.com>. <http://example.org/.well-known/genid#e162c9a7-52cf-4240-9359-b1b1f977f642> <http://foaf.com/knows> <http://example.org/.well-known/genid#6955800d-16db-49f8-a614-b0cbea3d7fb2>

Input

turtle @prefix : <http://example.com/>. :a :b ( "apple" "banana" ) .

Output

```turtle http://example.org/.well-known/genid#018a16a1-9f82-4acd-930e-2be1ea090e83 http://www.w3.org/1999/02/22-rdf-syntax-ns#first "apple"^^http://www.w3.org/2001/XMLSchema#string. http://example.org/.well-known/genid#4ef6beb7-5e21-4d77-9459-2662b6845375 http://www.w3.org/1999/02/22-rdf-syntax-ns#first "banana"^^http://www.w3.org/2001/XMLSchema#string. http://example.org/.well-known/genid#4ef6beb7-5e21-4d77-9459-2662b6845375 http://www.w3.org/1999/02/22-rdf-syntax-ns#rest http://www.w3.org/1999/02/22-rdf-syntax-ns#nil. http://example.org/.well-known/genid#018a16a1-9f82-4acd-930e-2be1ea090e83 http://www.w3.org/1999/02/22-rdf-syntax-ns#rest http://example.org/.well-known/genid#4ef6beb7-5e21-4d77-9459-2662b6845375. http://example.com/a http://example.com/b http://example.org/.well-known/genid#018a16a1-9f82-4acd-930e-2be1ea090e83.

```