doc/protocol.rst: use double backticks for tag names

This commit is contained in:
Max Kellermann 2019-03-15 19:11:30 +01:00
parent cb71f6dd04
commit 8777737861
1 changed files with 3 additions and 3 deletions

View File

@ -146,9 +146,9 @@ of:
- ``(TAG == 'VALUE')``: match a tag value. - ``(TAG == 'VALUE')``: match a tag value.
``(TAG != 'VALUE')``: mismatch a tag value. ``(TAG != 'VALUE')``: mismatch a tag value.
The special tag "*any*" checks all The special tag ``any`` checks all
tag types. tag types.
*albumartist* looks for ``AlbumArtist`` looks for
``VALUE`` in ``AlbumArtist`` ``VALUE`` in ``AlbumArtist``
and falls back to ``Artist`` tags if and falls back to ``Artist`` tags if
``AlbumArtist`` does not exist. ``AlbumArtist`` does not exist.
@ -178,7 +178,7 @@ of:
- ``(AudioFormat =~ 'SAMPLERATE:BITS:CHANNELS')``: - ``(AudioFormat =~ 'SAMPLERATE:BITS:CHANNELS')``:
matches the audio format with the given mask (i.e. one matches the audio format with the given mask (i.e. one
or more attributes may be "*"). or more attributes may be ``*``).
- ``(!EXPRESSION)``: negate an expression. Note that each expression - ``(!EXPRESSION)``: negate an expression. Note that each expression
must be enclosed in parantheses, e.g. :code:`(!(artist == 'VALUE'))` must be enclosed in parantheses, e.g. :code:`(!(artist == 'VALUE'))`