# HG changeset patch
# User sem4j
# Date 1380597700 14400
# Node ID 6d2424f16a8301c04d140b10a9c5acb2186393e6
# Parent 360ae4d3d06c75f91f287dd016c6aaac2efdb733
Uploaded
diff -r 360ae4d3d06c -r 6d2424f16a83 tab2rdf.xml
--- a/tab2rdf.xml Mon Sep 30 23:21:24 2013 -0400
+++ b/tab2rdf.xml Mon Sep 30 23:21:40 2013 -0400
@@ -8,23 +8,50 @@
-
+
-
-
-
-
+
+
+
+
+
**What it does**
+
+Sample Input::
+
+ name age superviser
+ Micheal 42 John
+ Anne 30 Micheal
+
+Sample Parameters::
+
+ Namespace - 'http://localhost/'
+ Triple 1 - c1 'age' c2(literal)
+ Triple 2 - c3 'supervises' c1(URI)
+
+Sample Output::
+
+ <http://localhost/Michael> <http://localhost/age> "42"
+ <http://localhost/Anne> <http://localhost/age> "30"
+ <http://localhost/John> <http://localhost/supervises> <http://localhost/Micheal>
+ <http://localhost/Micheal> <http://localhost/supervises> <http://localhost/Anne>
+
+**Output Format**
+
+Output RDF format is N-Triples by default.
+
+Raptor's Rapper has to be installed to generate the output in Turtle or RDF/XML.
+