aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/core
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-10-16 12:12:14 +0200
committerDavid Robillard <d@drobilla.net>2020-10-16 12:29:29 +0200
commitf207706a7ca2050ae86a468b416f45309cbfc591 (patch)
tree08429fe1b3261ea905d57ca5ef18f807213827bb /lv2/core
parent9e46d4a8323e9a91480631980a984700b76a09bd (diff)
downloadlv2-f207706a7ca2050ae86a468b416f45309cbfc591.tar.xz
Fix HTML character entities in documentation
Not all of these actually show up in the output, but it's unnecessary to use these in Markdown anyway.
Diffstat (limited to 'lv2/core')
-rw-r--r--lv2/core/lv2core.meta.ttl11
1 files changed, 5 insertions, 6 deletions
diff --git a/lv2/core/lv2core.meta.ttl b/lv2/core/lv2core.meta.ttl
index 1dca855..465917d 100644
--- a/lv2/core/lv2core.meta.ttl
+++ b/lv2/core/lv2core.meta.ttl
@@ -323,8 +323,7 @@ LV2 specifications are documented using this property with an lv2:Markdown
datatype.
If the value has no explicit datatype, it is assumed to be a valid XHTML Basic
-1.1 fragment suitable for use as the content of the <code>&lt;body&gt;</code>
-element of a page.
+1.1 fragment suitable for use as the content of the `body` element of a page.
XHTML Basic is a W3C Recommendation which defines a simplified subset of XHTML
intended to be reasonable to implement with limited resources, for exampe on
@@ -350,7 +349,7 @@ To be discovered by hosts, plugins MUST explicitly have an rdf:type of lv2:Plugi
in their bundle's manifest, for example:
:::turtle
- &lt;http://example.org/my-plugin&gt; a lv2:Plugin .
+ <http://example.org/my-plugin> a lv2:Plugin .
Plugins should have a doap:name property that is at most a few words in length
using title capitalization, for example <q>Tape Delay Unit</q>.
@@ -548,10 +547,10 @@ SHOULD specify this in their `manifest.ttl` so the host can associate them with
the correct plugin. For example:
:::turtle
- &lt;thing&gt;
+ <thing>
a ext:Thing ;
- lv2:appliesTo &lt;plugin&gt; ;
- rdfs:seeAlso &lt;thing.ttl&gt; .
+ lv2:appliesTo <plugin> ;
+ rdfs:seeAlso <thing.ttl> .
Using this pattern is preferable for large amounts of data, since the host may
choose whether/when to load the data.