I use rating = 5 for books I have proofed and corrected. I'm trying to create a metadata plugboard which will flag this up in the filename, and tried this:
Code:
{rating:contains(5,✓ ,)}{title}
What I get is "✓Title" instead of the expected "✓ Title". Replacing the space after "✓" with a NBSP makes no difference. So I tried escaping the space with a backslash:
Code:
{rating:contains(5,✓\ ,)}{title}
and now I get "✓ itle" -- the space is there, but it overwrites the first character of the title...
Can anyone explain what is going on here, and how I can get both a space and the first character of the title to appear?