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
Hello, is it possible to reload highlight js somehow dynamically? comparable to:
hljs.initHighlighting.called = false; hljs.initHighlighting();
or
$(document).ready(function() { $('#myDiv').each(function(i, e) {hljs.highlightBlock(e)}); });
The text was updated successfully, but these errors were encountered:
You can use code property to bind to your dynamic code content.
code
Sorry, something went wrong.
thank you. But i am using it in a contentEditable="true" container and want to re render the highlightjs once changes are made
Can you give me some example?
No branches or pull requests
Hello,
is it possible to reload highlight js somehow dynamically?
comparable to:
or
The text was updated successfully, but these errors were encountered: