Forum Moderators: open
So, if an indexing process were to read the meta-tag and NOT properly react to a "%" character, then, depending upon how they index pages, you might effectively get the page linked to EVERY word that is being indexed (EVERY as in all words appearing on all pages on every website being indexed).
This is a simplified example:
Assume an index that maintains a list of all individual keywords. With each keyword, there is a list of all URLs that contain the keyword.
If the indexing process reads a keyword like "%widget" and then tries to add your URL to the list, AND the code doesn't handle the "%" character, then it may try to add the URL with something like this (pseudo-code):
Add "http://example.com/trickymetatags.htm" to the URL list where keyword LIKE "%widget"
There are a lot of if-s in the above description, and the real-world process is much more complex. So I doubt that it would actually work - but you never know unless you look at the code.
example:
<title>jimshu79 likes webmasterworld - widgets.com</title>
<META NAME="keywords" CONTENT="%jimshu79 likes webmasterworld - widgets.com, keyword, keyword, keyword....etc
and no...there is no space between the % and the first keyword...