summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-03-15 19:11:30 +0100
committerMax Kellermann <max@musicpd.org>2019-03-15 19:11:30 +0100
commit8777737861ca2c01003e03b0f90b78feb2a2895a (patch)
tree64ebdc1c8562674f4e7ddc9fc60994621d692ed7 /doc
parentcb71f6dd04343dacdef6909c4f64821c1b9f2377 (diff)
doc/protocol.rst: use double backticks for tag names
Diffstat (limited to 'doc')
-rw-r--r--doc/protocol.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/protocol.rst b/doc/protocol.rst
index ea8c9c13d..c51db6dd3 100644
--- a/doc/protocol.rst
+++ b/doc/protocol.rst
@@ -146,9 +146,9 @@ of:
- ``(TAG == 'VALUE')``: match a tag value.
``(TAG != 'VALUE')``: mismatch a tag value.
- The special tag "*any*" checks all
+ The special tag ``any`` checks all
tag types.
- *albumartist* looks for
+ ``AlbumArtist`` looks for
``VALUE`` in ``AlbumArtist``
and falls back to ``Artist`` tags if
``AlbumArtist`` does not exist.
@@ -178,7 +178,7 @@ of:
- ``(AudioFormat =~ 'SAMPLERATE:BITS:CHANNELS')``:
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
must be enclosed in parantheses, e.g. :code:`(!(artist == 'VALUE'))`