aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-21 21:20:45 +0000
committerDavid Robillard <d@drobilla.net>2011-11-21 21:20:45 +0000
commit72c20ba0ec604b15fc62f11ccde5c32662f86f3a (patch)
tree3c14991e64c5bda2d9699f8d656c2e72c8aa7777
parent5d554fb86495f5d10138199572a4848df2787179 (diff)
downloadlv2-72c20ba0ec604b15fc62f11ccde5c32662f86f3a.tar.xz
Prettify Turtle example.
-rw-r--r--lv2/ns/ext/pui/pui.ttl10
1 files changed, 6 insertions, 4 deletions
diff --git a/lv2/ns/ext/pui/pui.ttl b/lv2/ns/ext/pui/pui.ttl
index c035e56..d305769 100644
--- a/lv2/ns/ext/pui/pui.ttl
+++ b/lv2/ns/ext/pui/pui.ttl
@@ -54,10 +54,12 @@
plugins. The UIs are code that reside in shared object files in an LV2
bundle and are referenced in the RDF data using the triples:</p>
<pre class="turtle-code">
-@prefix pui: &lt;http://lv2plug.in/ns/ext/pui#&gt; .
-&lt;http://example.org/my-ui&gt; a pui:Gtk2UI ;
- lv2:appliesTo &lt;http://example.org/my-plugin&gt; ;
- pui:binary &lt;my-ui.so&gt; .
+@prefix pui: &lt;http://lv2plug.in/ns/ext/pui#&gt; .
+
+&lt;http://example.org/my-ui&gt;
+ a pui:Gtk2UI ;
+ lv2:appliesTo &lt;http://example.org/my-plugin&gt; ;
+ pui:binary &lt;my-ui.so&gt; .
</pre>
<p>... where <code>http://example.org/my-plugin</code> is the URI of the plugin,
<code>http://example.org/my-ui</code> is the URI of the plugin UI and