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
I have the following text in my post:
[java]String str = "A String";[/java]
It renders the following:
String str = "A String"String";
It seems the above example is matching as a string and as a keyword. The HTML looks like the following:
<code data-enlighter-language="java" class="EnlighterJSRAW">String str = "Inline String";</code>
And the DOM is being rendered:
<span class="beyondEnlighterJS EnlighterJS"> <span class="kw2">String</span> <span class> str = </span> <span class="str">"Inline String"</span> <span class="kw2">String</span> <span class=>";</span> </span>
I've also verified that the above behaviour occurs if the string is, "A void" (another java keyword).
Hope the above is enough information. It seems like keywords are still being searched even within quotes.
The text was updated successfully, but these errors were encountered:
Dear dan, thanks for your report! the bug is already known and related to the EnlighterJS Tokenizer Engine: EnlighterJS/EnlighterJS#8
A Bugfix release will follow asap!
best regaards, Andi
Sorry, something went wrong.
Awesome! I was just looking into how to fix this, cheers for the quick response, it would have been a waste of my time otherwise :)
Cheers
AndiDittrich
No branches or pull requests
I have the following text in my post:
It renders the following:
It seems the above example is matching as a string and as a keyword. The HTML looks like the following:
And the DOM is being rendered:
I've also verified that the above behaviour occurs if the string is, "A void" (another java keyword).
Hope the above is enough information. It seems like keywords are still being searched even within quotes.
The text was updated successfully, but these errors were encountered: