From 8777737861ca2c01003e03b0f90b78feb2a2895a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 15 Mar 2019 19:11:30 +0100 Subject: [PATCH] doc/protocol.rst: use double backticks for tag names --- doc/protocol.rst | 6 +++--- 1 file 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'))`