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/presets | |
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/presets')
-rw-r--r-- | lv2/presets/presets.meta.ttl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lv2/presets/presets.meta.ttl b/lv2/presets/presets.meta.ttl index cc6d33a..8ff25c1 100644 --- a/lv2/presets/presets.meta.ttl +++ b/lv2/presets/presets.meta.ttl @@ -78,7 +78,7 @@ bundle containing presets should list them like so: eg:mypreset a pset:Preset ; lv2:appliesTo eg:myplugin ; - rdfs:seeAlso <mypreset.ttl> . + rdfs:seeAlso <mypreset.ttl> . """^^lv2:Markdown . @@ -90,7 +90,7 @@ predicates can be used to describe any data associated with the preset. For example: :::turtle - @prefix eg: <http://example.org/> . + @prefix eg: <http://example.org/> . eg:mypreset a pset:Preset ; @@ -108,10 +108,9 @@ A Preset SHOULD have at least one lv2:appliesTo property. Each Port on a Preset MUST have at least a lv2:symbol property and a pset:value property. Hosts SHOULD save user presets to a bundle in the user-local LV2 directory (for -example `~/.lv2`) with a name like -`<Plugin_Name>_<Preset_Name>.preset.lv2` (for example -`LV2_Amp_At_Eleven.preset.lv2`), where names are transformed to be valid LV2 -symbols for maximum compatibility. +example `~/.lv2`) with a name like `<Plugin_Name>_<Preset_Name>.preset.lv2` +(for example `LV2_Amp_At_Eleven.preset.lv2`), where names are transformed to be +valid LV2 symbols for maximum compatibility. """^^lv2:Markdown . |