diff options
author | David Robillard <d@drobilla.net> | 2020-10-16 12:12:14 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-16 12:29:29 +0200 |
commit | f207706a7ca2050ae86a468b416f45309cbfc591 (patch) | |
tree | 08429fe1b3261ea905d57ca5ef18f807213827bb /lv2/state | |
parent | 9e46d4a8323e9a91480631980a984700b76a09bd (diff) | |
download | lv2-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/state')
-rw-r--r-- | lv2/state/state.meta.ttl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lv2/state/state.meta.ttl b/lv2/state/state.meta.ttl index 3c0fc43..59c9092 100644 --- a/lv2/state/state.meta.ttl +++ b/lv2/state/state.meta.ttl @@ -301,9 +301,9 @@ when it is called with URI LV2_STATE__interface. The plugin data file should describe this like so: :::turtle - @prefix state: <http://lv2plug.in/ns/ext/state#> . + @prefix state: <http://lv2plug.in/ns/ext/state#> . - <plugin> + <plugin> a lv2:Plugin ; lv2:extensionData state:interface . @@ -338,9 +338,9 @@ state:state This property may be used anywhere a state needs to be described, for example: :::turtle - @prefix eg: <http://example.org/> . + @prefix eg: <http://example.org/> . - <plugin-instance> + <plugin-instance> state:state [ eg:somekey "some value" ; eg:someotherkey "some other value" ; |