Experimental Feature: Overlays - small typos

Started by axel.hennig, October 15, 2025, 09:23:03 AM

Previous topic - Next topic

axel.hennig

Typo 1:
https://www.photools.com/help/imatch/overlays.htm?dl=hid-12

You cannot view this attachment.

Typo 2:
https://www.photools.com/help/imatch/overlays.htm?dl=hid-12

I guess the escape character ';' is missing here (two semicolons needs to be escaped as mentioned in the help).

You cannot view this attachment.

Typo 3:
https://www.photools.com/help/imatch/overlays.htm?dl=hid-13

You cannot view this attachment.

Typo 4:
https://www.photools.com/help/imatch/overlays.htm?dl=hid-16

You cannot view this attachment.

Mario

That's what you get when you let an AI check for spelling errors  :) Random nonsense characters...
And for the code blocks (grey boxes) I need to write everything escaped, so internally this looks like:

<pre>rowne={File.Rating|numcomp:gte,3,&lt;span style="font-size:2rem;"&gt;&amp;#11088&lt;span style="color:red"&gt;~</span>;&lt;/span&gt;}</pre>

and when I mess up, the browser wll interpret parts of it as HTML, breaking the layout.

All fixed now, thanks.

axel.hennig

Sorry for beeing picky, but I think "Typo 2" is not gone. It was even better before.

Why?
Before it was:
rowne={File.Rating|numcomp:gte,3,<span style="font-size:2rem;">&#11088~;</span>}

Now, it is:
rowne={File.Rating|numcomp:gte,3,<span style="font-size:2rem;">&#11088<span style="color:red">~;</span>}

The difference is: the "~" was red and is now black (worse to spot) and the first "~" is still missing (after "2rem"). Additionally there are two "opening" <span> and just one "closing" </span>.

Mario

You refer to the Mind ; section?
I have updated that again.

axel.hennig

I'm sorry, but this is still not gone.

https://www.photools.com/help/imatch/index.html?dl=hid-12

Several mistakes highlighted in the screenshot:

  • Tilde "~" before colon ":" in first grey box.
  • Tilde "~" before semicolon ";" in the text right under the first grey box.
  • Tilde "~" before colon ":" in second grey box.
  • Missing tilde "~" before semicolon ";" in second grey box.
  • Colon ":" instead of semicolon ";" in second grey box.

Additionally: The second grey box has an opening "<" for the "span", but no closing ">" one. And the closing "</span>" is completely missing.

You cannot view this attachment.

Mario

OK, try again please. I've changed the source to

<pre>rowne={File.Rating|numcomp:gte,3,&lt;span style="font-size:2rem<span style="color:red">~;</span>"&gt;&amp;#11088<span style="color:red">~;</span>&lt;/span&gt;}</pre>


Mario