rainbow
rainbow copied to clipboard
Random code added
Hey,
I'm having a bizarre occurrence of phantom code which appears from nowhere. Please view attached screenshots and advise. It's after: controls =
Hi @etetlow. I believe the issue here is that the browser is interpreting the < and > tags in your javascript as html tags. Try replacing them with <
and >
.
<code data-language="js">
function prepareFlexTable() {
var left = $('<i/>').attr('class', 'fas fa-angle-left'),
</code>
etc.
Hey @ccampbell . That did the trick. That you soo much. Was dreading having to change my syntax highlighter snd all the code involved.