We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See example: Use "Day" and search for "a":
What happens:
05 & asda (with all three a's underlined)
What was expected: 05 & asda (with both a's underlined)
05 & asda (with both a's underlined)
And it gets worse with every search (delete "a", insert new "a" -> 05 & asda)
05 & asda
The text was updated successfully, but these errors were encountered:
Fixed the problem by replacing the below code in _filter
_filter
$this .html(function(index, oldhtml){ return oldhtml.replace(new RegExp(pattern, 'gi'), '<span class="'+self.settings.markerClass+'">$1</span>') })
with
$this .html($this.text().replace(new RegExp(pattern, 'gi'), '<span class="'+self.settings.markerClass+'">$1</span>') )
Sorry, something went wrong.
No branches or pull requests
See example: Use "Day" and search for "a":
What happens:
05 & asda (with all three a's underlined)
What was expected:
05 & asda (with both a's underlined)
And it gets worse with every search (delete "a", insert new "a" ->
05 &amp; asda
)The text was updated successfully, but these errors were encountered: