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
Describe the issue Images with empty alt or links with empty text do not have highlight
Which language seems to have the issue? markdown
Are you using highlight or highlightAuto? highlight
highlight
highlightAuto
Sample Code to Reproduce
![](https://example.com) ![alt](https://example.com) [](https://example.com) [text](https://example.com)
gives out HTML result
![](https://example.com) ![<span class="hljs-string">alt</span>](<span class="hljs-link">https://example.com</span>) [](https://example.com) [<span class="hljs-string">text</span>](<span class="hljs-link">https://example.com</span>)
Expected behavior
![](<span class="hljs-link">https://example.com</span>) ![<span class="hljs-string">alt</span>](<span class="hljs-link">https://example.com</span>) [](<span class="hljs-link">https://example.com</span>) [<span class="hljs-string">text</span>](<span class="hljs-link">https://example.com</span>)
Additional context
highlight.js/src/languages/markdown.js
Lines 88 to 110 in 9350caf
Looks like it will only match square brackets with something in between.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the issue
Images with empty alt or links with empty text do not have highlight
Which language seems to have the issue?
markdown
Are you using
highlight
orhighlightAuto
?highlight
Sample Code to Reproduce
gives out HTML result
Expected behavior
Additional context
highlight.js/src/languages/markdown.js
Lines 88 to 110 in 9350caf
Looks like it will only match square brackets with something in between.
The text was updated successfully, but these errors were encountered: