!!! The Turtle Markup

The markup to define relations/triples/assertions in Turtle syntax goes as follows:

{{{
%%turtle...
}}}

! Defining Multiple Relations using turtle

The markup allows to define multiple relations by one expression in a concise way:

{{{
%%turtle
Ms. Moneypenny livesIn:: London;
 	       rdf:type:: Person;
 	       rdfs:label:: 'Miss Moneypenny'@en, 'Fräulein Moneypenny'@de, 'Mlle Moneypenny'@fr
%
}}}
This expression defines five triples.
By the use of colons multiple assertions can be defined for one subject. Furthermore, for one property, multiple assertions can be stated by listing the respective relation objects as a comma-separated list as shown above with the different labels.