...
Example: If a property contained a status, the HTML would be something like <span class="status-success">OK</span>, and so the search query would beĀ @Property be ugly: @Property = '<span class="status-success">OK</span>'
Stored data for display | Stored data for search | Displayed as | Search query | Comments | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Before | <span class="status-success">OK</span> | (None, it didn't exist) |
| @Property = '<span class="status-success">OK</span>' | The search was ugly. | ||||||
After | <span class="status-success">OK</span> | "OK" |
| @Property = 'OK' | Awesome. |
I hope you understand that this is a major improvement, and will be satisfied with the implementation.