We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6805c8 commit 29e90b8Copy full SHA for 29e90b8
root/static/js/syntaxhighlighter.js
@@ -56,6 +56,7 @@ $(function () {
56
var getCodeLinesHtml = SyntaxHighlighter.Highlighter.prototype.getCodeLinesHtml;
57
SyntaxHighlighter.Highlighter.prototype.getCodeLinesHtml = function(html, lineNumbers) {
58
html = html.replace(/^ /, " ");
59
+ html = html.replace(/^\t/, "	");
60
html = getCodeLinesHtml.call(this, html, lineNumbers);
61
return processPackages(html);
62
};
0 commit comments