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
Hi, I noticed that if I write a block code which contains a single quote next to a $ sign, the highlighted output will be uncorrect.
Example:
<pre><code class="language-php"> <?php echo 'Test variable$'; ?> </code></pre>
The resulting output will be:
<?php echo 'Test variable ; ?>
Also, when there's other text: the output it's even worse: Example:
<pre><code class="language-php"> <?php echo 'Test variable$$'; ?> <?php echo 'Test 2'; > </code></pre>
Output:
<?php echo 'Test variable <?php echo 'Test 2'; > ; ?> <?php echo 'Test 2'; >
To solve this I tried to add another dollar sign so it becomes: Example:
The resulting output will be correct:
<?php echo 'Test variable'; ?>
Anyone noticed this behavior?
Have a good day!
The text was updated successfully, but these errors were encountered:
895bf46
Wow! That was a nasty bug and it also impacted Handlebars and Smarty. Thank you so much for reporting this. It should be fixed now.
Sorry, something went wrong.
No branches or pull requests
Hi,
I noticed that if I write a block code which contains a single quote next to a $ sign, the highlighted output will be uncorrect.
Example:
The resulting output will be:
Also, when there's other text: the output it's even worse:
Example:
Output:
To solve this I tried to add another dollar sign so it becomes:
Example:
The resulting output will be correct:
Anyone noticed this behavior?
Have a good day!
The text was updated successfully, but these errors were encountered: